time lapse
time lapse
- Started
- Last post
- 4 Responses
- legspin
Is there some actionscript to say:
stop for a number of seconds then go to and do something?
- ********0
some clever usage of setInterval
or indeed getTimer will be your friend ;)
- legspin0
stop();
getTimer()/10000;
gotoAndPlay(173);something like this? Only this doesn't delay it long enough. Is there a correct way of doing this?
- ********0
try doing something like this....
stop();
function pauseClip() {
gotoAndPlay(14);
clearInterval(pauseInterval);
}
pauseInterval = setInterval(pauseClip, 1000);the 1000 refers to the amount of time that the pause is for... adjust to taste ;)
- legspin0
will do thanks.