time lapse
time lapse
Out of context: Reply #3
- Started
- Last post
- 4 Responses
- ********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 ;)