Preloading

having a few problems with preloaders - starts loading at 50%

i want to preload everything in my swf. I have the preloader action on my first frame (along with the sounds)

stop();
block._xscale = 0;
function loadIt() {
this.onEnterFrame = function() {
var loaded = this.getBytesLoaded();
var total = this.getBytesTotal();
var percent = (loaded/total)*100;
block._xscale = percent;
if (percent>99) {
gotoAndPlay(3);
delete this.onEnterFrame;
}
};
}
loadIt();

I’ve tried to NOT export the sounds in the first frame and place all classes in the second frame but then the sounds dont seem to play at all.

Any help on this would be great…! :thumb2: