Results 1 to 2 of 2

Thread: skipping a scene in Flash

  1. #1
    Registered
    Join Date
    Mar 2007
    Posts
    14

    skipping a scene in Flash

    I have a Flash document with three scenes; CHOOSE, STEVE, LIDIA
    I have a two buttons on CHOOSE, which is the first screen, going to STEVE and LIDIA. Getting to STEVE is a snap:

    on(release){
    nextScene();
    }

    ...BUT...HOW do a code the button to get to the LIDIA scene?
    I want the LIDIA button to skip past the STEVE scene to the scene after, called LIDIA.
    I have attempted (guessed) two variations and neither work:

    on(release){
    lidia.scene();
    }

    on(release){
    Scene("lidia");
    }

    How do I write the ActionScript to accomplish this?

    I know I have asked a lot of questions lately. I appreciate everyone's willingness to help me!!

  2. #2
    Is Still Alive! Johnny Gulag's Avatar
    Join Date
    Feb 2006
    Location
    North Texas
    Posts
    242
    Hello

    Try this:
    Code:
    on(release){
     gotoAndPlay("LIDIA", 1);
    }
    I think that is it. Though for the record scenes are not the best bet, movieclips are better.

    More info

    Hope it helps.

Similar Threads

  1. Questions about Flash
    By Liz in forum Graphics & Multimedia
    Replies: 4
    Last Post: 07-07-2006, 06:57 AM
  2. Need an original template designed with flash
    By Kyle in forum The Marketplace
    Replies: 0
    Last Post: 06-01-2006, 06:03 PM
  3. New Flash TRAILER system
    By Emancipator in forum User Owned Websites
    Replies: 24
    Last Post: 02-07-2006, 07:55 AM
  4. Flash Games CMS System
    By Emancipator in forum Website Programming & Databases
    Replies: 5
    Last Post: 07-05-2005, 02:13 PM
  5. flash mx
    By eMEraLdwPn in forum Graphics & Multimedia
    Replies: 7
    Last Post: 12-26-2004, 01:27 PM

Bookmarks

Posting Permissions

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