I have a preloader on frame 1. actions on frame 1:
stop();
onEnterFrame = function(){
bytesload = _root.getBytesLoaded();
trace (bytesload);
bytestotal = _root.getBytesTotal();
trace (bytestotal);
percent = Math.floor(bytesload / bytestotal * 100);
trace (percent);
if (percent == 100){
gotoAndPlay(“loaded”);
delete onEnterFrame;
}
}
The preloader doesn’t load until the entire library has loaded, even though there isn’t anything on the stage other than the preloader. all images and references to sound are on the “loaded” frame. There are fonts in the library, however. Is there a way to show the preloader as the library loads? Thanks a bunch!