A Flash Developer Resource Site

+ Reply to Thread
Results 1 to 3 of 3
  1. #1

    Angry

    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.

  2. #2
    9th Grade WC
    Join Date
    Sep 2000
    Posts
    1,192
    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");

  3. #3

    Angry 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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts




Click Here to Expand Forum to Full Width


HTML5 Development Center