does anyone know of any actionscript i can use for a time delay.
Say you have only 3 frames on a time line is there some way using actionscript that i can delay the playhead so for instance it stays on each frame for 20mins and once that time is up it moves on to the next frame and so on and so on.
Paste this script on the fame you want to pause on:[AS]this.stop();
pause = function () {
play();
clearInterval(pausei);
}
pausei = setInterval(pause, 10000);
[/AS]
As of right now, it will pause for 10 seconds, 10 sec = 10000.
So if you want it to pause for 20 min, you’ll need to change it to 1200000.
My math is a lil rusty, but I think that is correct.