Groups | Blog | Home
all groups > flash actionscript > march 2004 >

flash actionscript : Help with GotoAndPlay.


cazwazere
3/4/2004 9:54:54 PM
Can anyone help me? I want my button to go to scene 31, frame 1 when you click
it, but at the moment, it just goes to the next frame. Here is my current code:
[hr]
on (release) {
gotoAndPlay("31", "1");
}
[hr]
Why isn't it working? Thanks.
jerome NO[at]SPAM STC
3/4/2004 10:12:48 PM
on (release) {
gotoAndPlay("31",1);
}

Jeckyl
3/8/2004 11:28:37 AM
Problem is that you are doing this at all !!!

Do NOT use scenes for navigation. They are buggy and the cause of LOTES of
grief.

Instead, use frame labels

eg.

gotoAndPlay("StartOfScene31");

where you put the label 'StartOfScene31' on the first frame of scene 31

AddThis Social Bookmark Button