hello there,
i have this code for my preloading, it works fine, but this one waits for the
entire site to load, how can i modify it, for a certain certain number of frames
to be loaded and the move on.
PHP Code:
loadPercent = (Math.floor(_root.getBytesLoaded()/_root.getBytesTotal()*100)+"%");
if (_root.getBytesLoaded() == _root.getBytesTotal()) { //Check for finished loading
//If loaded, final update to fields
loadPercent = "100%";
gotoAndPlay("Scene 1", 1); //Where to go once your movie is loaded
}
thanks