Actionscript: pause
Actionscript: pause
Out of context: Reply #1
- Started
- Last post
- 36 Responses
- kafeen330
_root.timer = 0;
function waiting() {
_root.timer++
if (_root.timer == 450) {
_root.gotoAndPlay("blah");
_root.timer = 0;
}
}this one is based on frame rate. so if your movie is 30fps, then this is sitting there for 15secs
i am sure there is one based on an object()... but i made this one up quickly for a project.