Hi,
I’m attempting to advance a movie by time not by frame rate so, on frame 34 I have
function playNext() {
gotoAndPlay("scene1");
clearInterval(timerInterval);
}
timerInterval = setInterval(playNext, 5000);
with a scene1 label at frame 45, but the movie does not stop at 34, it continues to frame 45 plays to 55, where their is a
stop()
action. At frame 55 it loops back to 45, playing once again to 55 then stops.
What Am I missing?