Check it, I’m working on this site and I’m having each section in a different Scene in flash…I know how to link them together, but I’m using a different kind of buttons to have a “flashy” rollover…so the gotoandplay() actionscript would be within the movieclip that acts as a button. But, now the buttons wont go to the scene that its targeted to…anyone know what I’m missing? I’d appreciate any help.
This is the actionscript for the buttons.
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
_root.gotoAndPlay("About", "1");
}