I want to load movies in a movie. But 1 at a time of course. I need to make a button lets call it “NEXT”. I need a script that will load the next movie, On top of the other movie and so on. Hope you understand that i want one button to load more than 1 movie.
Is this possible? All help is greatly appreciated of course. TIA!!
Place this on the main timeline:
var clip_array = ["movie1.swf", "movie2.swf"];//place here the name of the movies you want to load
var which = 0, depth = 100;
And this on the button:
on (press) {
which == clip_array.length-1 ? which=0 : which++;
loadMovieNum(clip_array[which], depth);
}