Preloader Array Newbie

I’m trying to get a preloader to work with multiple swf and have found this one seems to work but I need to work out how to delay the start of the second, third etc. I thought maybe adding a visible = false type script to the array may work??? HELP

your description is a bit unclear

please post some code/fla and descripbe exactly what the problem is.

if you have a look at the above link that is the code I’ve used. What this code does is preload and load all the levels at once I’m hoping to stagger the loading of the indivdual swf’s

maybe this works:

[AS]
// add this to frame 2
clearInterval(“loadNext”);

frame 4:
//get the actual loaded bytes
actBytes = eval("_level" add movielevel).getBytesLoaded() || 0;
// get the total bytes to load
totBytes = eval("_level" add movielevel).getBytesTotal() || 100;
// calculate the percentage loaded
percent = Math.round(actBytes * 100 / totBytes);

if( totBytes - actBytes > 10){//more bytes available, keep on loading
gotoAndPlay(3);
} else if(actMovieIdx < moviearray.length){//if we got more movies to load
/// replace 2000 with the number of ms you want to delay the loading of the next movie
loadNext = setInterval(gotoAndPlay(2), 2000);
} // else go to frame 5

//add this to frame 5
clearInterval(“loadNext”);
[/AS]

what about if I add a stop() to frame 1 of each of the movies and stop()
gotoAndPlay(_root.imag.loadMovie(“adimg10.swf”,(2)));
where adimg10.swf is the next movie to the last frame

my solution doesn’t seem to work but I’m worried about using a time based code. If i use attachMovie to daisy chain the movies together and then have a regular preloader will this take into account the daisy chained movies.