I know that the basic:
on(release){
gotoAndStop();
}
Goes to specified frame numbers. Is there anyway I can make it go to a specific frame on a different scene.
Edit: I just tried
on(release){
gotoAndStop("scene 3",1);
}
And it takes me to the beginning of the animation. Even if I do:
on(release){
gotoAndStop("3",1);
}
any solutions?
Button help-Actionscript 2.0
Started by: olololno | Replies: 2 | Views: 354 | Closed
Apr 19, 2009 6:51 PM #401397
Apr 19, 2009 7:01 PM #401426
on(release){
gotoAndStop("Scene 3",1);
}
Capital on 'Scene' was missing.
gotoAndStop("Scene 3",1);
}
Capital on 'Scene' was missing.
Apr 19, 2009 7:14 PM #401457
Yay, thank you. I didn't think a capital letter mattered that much >_>