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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

actionscript wait and replay? 2

Status
Not open for further replies.

wikfx

IS-IT--Management
Dec 16, 2001
196
MT
Hi I am working on a little mc I want the animation to replay every say 25 seconds can I do this with actionscript??

Thanks
Brian
 
You could try this...

First frame...
Code:
function pause(){
    play();
    clearInterval(timer);
};

Last frame...
Code:
stop();
timer = setInterval(pause, 25000);
//where 25000 is 25 seconds or 60000, 1 minute.

 
cool thanx a million

Brain
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top