Flash Timer
Flash Timer
Out of context: Reply #8
- Started
- Last post
- 16 Responses
- beani0
put this on an mc in the frame where you want the wait to occur:
onClipEvent(load){
startTime=getTimer();
countAmount=15;
elasped=0;
_parent.stop();
}
onClipEvent(enterFrame){
elapsed=getTimer()-startTime;
if (elapsed>=countAmount*1000){
_parent.play();
}
}