After movie is finished

i was wondering if you can randomly, externally load a movie from a source…but after the movie is completed, load a different one 10-20 seconds later? thanks a lot (-:

-loki

At the end of your movie (in the last frame), you could put that kind of code:

// this function could be declared before
function loadMov () {
   clearInterval(myInterval);
   someClip.loadMovie("someMovie.swf");
}

myInterval = setInterval(loadMov,10000);

The syntax is probably wrong, but you’ll have no problem to correct it if you take a look at the AS dictionary.

pom :slight_smile: