Button help-Actionscript 2.0

Started by: olololno | Replies: 2 | Views: 354 | Closed

olololno

Posts: 118
Joined: Apr 2009
Rep: 10

View Profile
Apr 19, 2009 6:51 PM #401397
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?
Scorpioxxx
2

Posts: 1,454
Joined: Apr 2006
Rep: 10

View Profile
Apr 19, 2009 7:01 PM #401426
on(release){
gotoAndStop("Scene 3",1);
}

Capital on 'Scene' was missing.
olololno

Posts: 118
Joined: Apr 2009
Rep: 10

View Profile
Apr 19, 2009 7:14 PM #401457
Yay, thank you. I didn't think a capital letter mattered that much >_>