Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[MX,04] Help! pausing a movie clip for x amount of seconds.

Status
Not open for further replies.

jbearclaw84

Technical User
Jun 6, 2007
20
0
0
US
Hello all,
Looking for a quick script to pause a movie clip for about 3 second, afterward it would resume playing.

Thanks for the help!
 
figured it out, just apply this to the frame that you want to pause at.

stop();
tempInt = setInterval(function(){clearInterval(tempInt);play();}, 3000);

//note 3000=3 secs.//
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top