Question
playing random movies
Hi,
I was looking for tutorials on this but each script, and tutorial didnt work for me. I've got three movieClips on my main stage, movie1, movie2, and movie3 (its the instance too). Very predictable.
Not on load but rather I'd like each one to play in a random sequence. Maybe movie1 plays first, followed by movie3, not 1, 2, 3.
I tired this:
num = random(3)+1;
movie = "movie" + num;
movie.gotoAndPlay(2);
I've got a stop(); on the first frame inside each movie clip.
Thanks
I was looking for tutorials on this but each script, and tutorial didnt work for me. I've got three movieClips on my main stage, movie1, movie2, and movie3 (its the instance too). Very predictable.
Not on load but rather I'd like each one to play in a random sequence. Maybe movie1 plays first, followed by movie3, not 1, 2, 3.
I tired this:
num = random(3)+1;
movie = "movie" + num;
movie.gotoAndPlay(2);
I've got a stop(); on the first frame inside each movie clip.
Thanks