I have the following script to give effect to my loaded menu “movie clip” on my main stage. From the menu “movie clip” I have a about movie clip loading onto my stage. I think the effect script on my menu movie clip is over riding the load script for my about movie clip
the following script is on the first frame of my menu movie clip:
//stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
the following scripr is on my menu button to load about onto the stage.
Can anyone tell me why my menu button does not work with the effect script on the 1 frame?