Hi there,
Thanks for taking the time to read my post.
I am currently looking through an array of swf files, which is working fine, however I can not figure out how to make it all play again.
My actionscript is as follows
var mcl:MovieClipLoader = new MovieClipLoader();
var list:Object = new Object();
mcl.addListener(list);
var myMovies:Array = new Array(“movie1.swf”, “movie2.swf”, “movie3.swf”);
var cont:Number = 0;
function loadSwfs(){
createEmptyMovieClip(“target”+cont, getNextHighestDepth());
mcl.loadClip(myMovies[cont], eval(“target”+cont));
}
list.onLoadInit = function(){
clearInterval(interval);
if(cont < myMovies.length){
cont++;
interval = setInterval(loadSwfs,3500);
if(cont == myMovies.length){
trace(“COMPLETE!”);
}
}
}
loadSwfs();
Is anyone able to offer me some assistance or guidance please?
Thank you