A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: How to tell the movie to wait x number of seconds.

  1. #1
    I need, inside the scripting, to say wait 2 seconds then do this.

  2. #2
    Senior Member
    Join Date
    Jun 2000
    Posts
    1,180
    Hi..
    The following script will tell the MC 'myMovie' to wait two seconds before playing:

    on (release) {
    start = getTimer ();
    while (start+2000>now) {
    now = getTimer ();
    _root.myMovie.play();
    }
    }

    Hope this helps.

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