Flash Advisor logo
:: Desktop Shortcut
:: Flash Help
Advice from Experts

Closed Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2004
    Location
    England
    Posts
    12

    Default Can you delay Actionscript?

    Can you delay actionscript so that it executes on a specific frame?

    I have an animation and a button on the stage. I want the button to do something, but only when the animation gets to a certain point. So I've made the main timeline 60 frames long (my animation in embedded in a movie clip that loops every 60 frames) yet my actionscript is on frame 1.

    If the button is pressed anywhere between frame 1 and 59 the animation jumps to the target of the button, whereas frame 60 of the first animation and frame 1 of the second (which the button links to) glide seamlessly. Can I write some code that will say something like...

    "Do what I ask, but wait until frame 60 to do it"?

    Cheers,

  2. # ADS
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many
     
  3. #2
    Join Date
    May 2004
    Location
    U.S.A.
    Posts
    2,890

    Default

    Boolean to the rescue

    If you want the animation to play through to the end no matter when the button is pressed, create a variable with a boolean value(true or false). You can check that variable at the end of your animation to tell it to replay or do something else. Example....

    variable...
    Code:
    myLoop=true;
    button....
    Code:
    myButton.onRelease=function(){
    myLoop=false;
    }
    Last frame of animation.....
    Code:
    if(myLoop==true){
    //variable set to true loops the animation
    gotoAndPlay(1);
    }else{
    //variable set to false, do something else
    gotoAndStop(65);
    }
    A mind once stretched by a new idea never regains its original dimensions.
    - Oliver Wendell Holmes

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. NEED HELP ON OTHER ACTIONSCRIPT!
    By smurf123 in forum Advanced Flash
    Replies: 3
    Last Post: 03-10-2008, 03:00 AM
  2. Desperately need Actionscript help
    By wpbtechie in forum Flash Scripting
    Replies: 3
    Last Post: 01-13-2006, 11:30 AM
  3. 5 Second Delay
    By jhunt269 in forum Newbies
    Replies: 2
    Last Post: 04-15-2005, 02:28 AM
  4. Help me ACTIONSCRIPT
    By smurf123 in forum Advanced Flash
    Replies: 3
    Last Post: 02-23-2004, 06:03 AM
  5. sorry for the delay but, about frames in flash
    By adrian gray in forum Newbies
    Replies: 1
    Last Post: 09-24-2003, 06:08 AM

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
Sponsors
Create Speaking Characters for your website and Flash movies. 15 Day Free Trial