May 17, 2004 #1 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
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
May 17, 2004 2 #2 oldnewbie Technical User Dec 6, 2000 9,142 CA 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. Upvote 0 Downvote
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.
May 17, 2004 Thread starter #3 wikfx IS-IT--Management Dec 16, 2001 196 MT cool thanx a million Brain Upvote 0 Downvote