I have a button which directs play in scene 2
on (release) {
gotoAndStop ("Scene2",2);
}
Occaisionally when the button is pressed, the movie will jump to Scene 1, Frame2 and Stops. Scene 1 contains a moving text effect.
I am able to force the situation by pressing the button 3 times. while frame 2 is loaded.
Any Ideas??
Should I add something like::
on (release) {
if (_framesLoaded == 2){
stop(); //or break();
}
else {
gotoAndStop ("Scene2",2);
}
}
on (release) {
gotoAndStop ("Scene2",2);
}
Occaisionally when the button is pressed, the movie will jump to Scene 1, Frame2 and Stops. Scene 1 contains a moving text effect.
I am able to force the situation by pressing the button 3 times. while frame 2 is loaded.
Any Ideas??
Should I add something like::
on (release) {
if (_framesLoaded == 2){
stop(); //or break();
}
else {
gotoAndStop ("Scene2",2);
}
}