twos up!
twos up!
Out of context: Reply #7
- Started
- Last post
- 11 Responses
- unfittoprint0
I'm not sure about the 'doubling' of bytes loaded....
but you might want to use some loop to check the loading of 1 movie and then duplicate it...
mc1.loadMovie("image1.jpg");
loadLoop=setInterval(function(){
if( mc1.getBytesLoaded() == mc1.getBytesTotal() && mc1.getBytesTotal() > 100){
clearInterval(loadLoop);
mc1.duplicateMovieClip("mc2", 10)
};
}, 50)stop();