LoadClips work/don works
Hi people,
I have some trouble with my loadClip. Everytime I used the loadclip function, 8 swf will be load at one go. However, something the loadclip manage to all the swf and sometime it manage to load only 6 to 7 swf. All my 8 swf have different file size. And I need to more than 80 to 100 plus swf.
Is there way to fix this bug or ?
Here is my code
//Preloader Two
var listenerPage:Object= new Object();
var mcLoaderPage:MovieClipLoader= new MovieClipLoader();
mcLoaderPage.addListener(listenerPage);
listenerPage.onLoadStart= function(target:MovieClip):Void
{
countPages++;
}
listenerPage.onLoadInit= function(target:MovieClip):Void
{
countPages--;
setCheckPageLoaded(target); ---> This function is to remove Preloader MovieClip
if((countPages== 0) && (leftToLoad > 0))
{
fBoolean= false;
leftToLoad-= 2;
counterTwo+= 2;
twoPerPage+= 2;
aCountPage(counterTwo, twoPerPage); -----> This function is to load another 8 swf once the preivous 8 swf is load finish everything is complete.
}
}
Thank
Benson
