-
Ok flashers....In the movie that I am working on I am using several different scenes....6 total. In the first scene I have buttons linking you to all the other scenes....they work great. In each scene I have a button that takes you back to the main menu...works great. The problem I am running into is in scene 2(I haven't tried it in the others) I am trying to get my exit button to take me to my exit scene which is scene 6. Now on the main menu this works great, but in scene 2 all it does is takes me back to scene 1 frame 1 and I want it to goto scene 6 frame 1. The action I am using for my exit button is
on (release) {
gotoAndPlay ("Scene 6", 1);
}
Like I said earlier when I click it it takes me to scene 1 frame 1. Any help I can get is greatly appreciated. Thanks.
-
try _root.gotoAndPlay("scene 6", 1); with expert mode of your actions panel
else set a frame label for the first frame of the sixth scene then use
_root.gotoAndPlay("frameLabel");
-
Thanks
D4Demon,
Hey, thanks....it worked great.
For everybody else. Here is what the action for the button looks like:
on (release) {
_root.gotoAndPlay("exit");
}
Exit is the name that I labeled Frame1 of scene 6.
Thanks again.