What it does....

Loads random swfs from an array. All you need to do is type the movie names into the array and addone line of code to the end of all your movies.

The code....

Frame 1
//Enter all the movies you've got to choose from
//later we use the length of this array to generate our random number,
//so if you add or remove movies you only have to
//enter the name here and everything else is automatic
//...well _I_ thought it was neat...

movieArray = new array("blackpud.swf", "intersafe.swf");
//if you want to play extra movies when your first one finishes,
// this variable is how...

loadNew = true;
Frame 2
//Check to see if we want to load a new movie
if (loadNew == true){
//get a number between 0 and the number of movies in our array
movienumber = Math.floor(Math.random()*MovieArray.length);
//get the movie name out of the array
movieName = movieArray[movieNumber];
//load the chosen movie into level 1
loadMovieNum(movieName, 1);
//set variable so we only load a new movie when required
loadNew = false;
}
Frame 3
//loop
gotoAndPlay(2);

And on the last frame of all your movies, if you need to load another random movie afterwards:
_level0.loadNew = true;