hey out there,
i'm constructing a preloader with an already playing movie, so that when the user clicks on a button it loads up a new movieclip within that movie. but i have built other short movieclips (for the background) within that existing movieclip. so its basically "MC/MC/MC". now i thought this preloader would load the third movieclip aswell, but when i'm playing wimamp in the background it starts skipping when the clips start, showing that they have not been loaded properly. if anyone has any clue whats going on it would be a great help. thanks.
this is the main part of my script that i'm using:
total_bytes = _root.getBytesTotal();
loaded_bytes = _root.getBytesLoaded();
remaining_bytes = total_bytes-loaded_bytes;
percent_done = int((loaded_bytes/total_bytes)*100);
bar2.gotoAndStop(percent_done);
ifFrameLoaded (80) {
gotoAndPlay (23);}
this code is embedded part way through the 2nd MC.
i'm constructing a preloader with an already playing movie, so that when the user clicks on a button it loads up a new movieclip within that movie. but i have built other short movieclips (for the background) within that existing movieclip. so its basically "MC/MC/MC". now i thought this preloader would load the third movieclip aswell, but when i'm playing wimamp in the background it starts skipping when the clips start, showing that they have not been loaded properly. if anyone has any clue whats going on it would be a great help. thanks.
this is the main part of my script that i'm using:
total_bytes = _root.getBytesTotal();
loaded_bytes = _root.getBytesLoaded();
remaining_bytes = total_bytes-loaded_bytes;
percent_done = int((loaded_bytes/total_bytes)*100);
bar2.gotoAndStop(percent_done);
ifFrameLoaded (80) {
gotoAndPlay (23);}
this code is embedded part way through the 2nd MC.