Flash help - please!
Flash help - please!
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- zack270
you can use setInterval, which executes at a specified number of millisecond intervals:
i=0;
countID = setInterval(function(){
i++;
if(i==60){
_root.gotoAndPlay("end");
clearInterval(countID);
}
},1000); // 1000ms=1sec