well this has nothign to do with HTML:..so we wont focus on that at all..
basically when the movie loads..you can call/load your first 'piece' into it..
example button code:
on(press){
containerClip.loadMovie("imag1.jpg");
}
or another button code:
button1.onPress = function(){
containerClip.loadMovie("imag1.jpg");
}
to do the same automatically..you put the code on the frame..so it executes whenever that frame is encounterd.
containerClip.loadMovie("imag1.jpg");
thats it.. or you could use some sort clipEvent
onClipEvent(load){
containerClip.loadMovie("imag1.jpg");
}
you can drag as many ezPreloader instance as you want to the stage. :)
if you are loading things into the SAME container though..this isnt needed.. :)
