Make a movie clip button go to next scene
I'm having trouble with a movie clip that acts as a button. i want the button to go to the next scene. if anyone can help, that will be much appreiated. below is the actionscript i use which dosent work.
thanks
[email protected]
you can download the fla, to get a better understanding what i kinda mean:
http://www.filelodge.com/files/room4...h%20button.zip
or
http://www.ffiles.com/flash/buttons/button_mc/
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
gotoAndPlay("scene2",1);
}
http://www.filelodge.com/files/room4...h%20button.zip
or
http://www.ffiles.com/flash/buttons/button_mc/
Making a button move to the next scene
I thought my problem was over, but im still having trouble. i added some extra frame in scene 1 and now it stops working, it was working before when i only have one frame.
download the file here:
http://www.filelodge.com/files/room4...263/button.zip
Thanks
Vyset