Can anyone help me? I tried to make something that would open up dynamically a movie then after a certain amount of time close and open the next one. tobydog tried to help me and did but the code he gave me worked for his and not for my intentions. This is what I have so far… if the file is too big here is my scripting.
[AS]_root.createEmptyMovieClip(“movie”,3);
_root.movie.loadMovie(“Volcano4.swf”);
_root.movie._x = 150.4;
_root.movie._y = 105.2;
stop();
offset = 1;
timerInt = getTimer();
initialTimer = timerInt+offset*1000;
onEnterFrame = function () {
currentTimer = getTimer()-initialTimer;
if (currentTimer>=timerInt) {
play();
}
};
[/AS]
That takes me to page two where I have this,
[AS]stop();
_root.movie.removeMovieClip(“Volcano4”);
_root.twinkle2.loadMovie(“Luau.swf”);
[/AS]
So again the movie volcano loads up and after the certain ammount of time in the offset it goes to frame two where the movie is supposed to unload and and start up the “Luau.swf” movie. But insted it is loading the next movie but, the “Volcano4.swf” loads up again. Can anyone help me?
THanks,
ROxyGUrl