Flash Timer
Flash Timer
Out of context: Reply #10
- Started
- Last post
- 16 Responses
- autonoma0
I've done this:
function timer() {
stop();
frames = 4;
APause = setInterval(changeFrame, 15000);
function changeFrame() {
if (_currentframe == frames) {
gotoAndStop(1);
} else {
nextFrame();
clearInterval(APause);
}
}
}
timer();This works fine alone, but when I load this movie into the main movie, it no longer works.