Actionscript: pause
Actionscript: pause
Out of context: Reply #16
- Started
- Last post
- 36 Responses
- level20
On a blank movie clip on the timeline (put a stop(); on the frame this clip is on).
Measured in 1000th of a second (2000 = 2 seconds), so this is ultra precise.
Script:
------
onClipEvent (load) {
start = getTimer();
}
onClipEvent (enterFrame) {
now = getTimer()-start;
if (now>5000) {
start = getTimer();
//Put what you want to happen here.
}
}