Delay Movie

Basically… it’s a demo movie that runs through different sections of text…

I have it running with pauses so the user doesn’t have to interact. All they have to do is hit play and watch the demo. The text pauses in certain sections, just like I planned.

I also need a stop button to clear the pause and actually “stop” the movie incase the user did have time to read it all, or had to get up for something.

Know what I mean?

I am working on it, but I don’t know if I can fix it :-\

But if you want to work on it too, please notice that the pause script DOES stop() your movie, it stop() it and uses the counter, then if the counter reaches a certain point it calls upon a play() action.

I see what you’re saying… it does “stop”, and the timer tells it when to start again. So, it looks as if you have to clear the timer to get it to stop permanently.

Look at this one… it works good. Again, I can’t figure out how to clear the interval…

function pause(t, v)
{
t.interval = setInterval(unPause, v, t);
t.stop();
}

function unPause(t)
{
trace(“clear & play”);
clearInterval(t.interval);
t.play();
}


I’ve tried using this, but it’s not working. This is beginning to be a pain.

on (press) {
clearInterval(this);
stop();
}


Don’t worry holmes… I’m also working on it over here… I have been all morning… lol That’s a going crazy laugh.