Alright i have done this tutorial on this site http://www.kirupa.com/developer/actionscript/loading_random_movie.htm.
But I need help with the Action Script?? Could any one help me modifie the AS to allow this movie clips to be loaded in to another container movie clip…
My Current AS is;
filename = [“Banner1.swf”, “Banner2.swf”, “Banner3.swf”];
path = “http://www.buildersmart.com.au/flash/”;
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);