can anyone help?.. I would like to create a rollover bar which pops up on rollover, with a few url links inside…
I have the function of the rollover working but the links within dont work…
the buttons are within the mc that pops up
frame 1 has the code that makes the popup slider work
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
Im completly stuck and dont know what to do?
Your help is greatly appreciated