Ok so how about making your own pre-Loader??
Heres how :
1) Make a new blank Mc(little white paper with a plus in the bottom left of the library)
2)inside that mc make 3 layers: script , art , button and make sure the button layer has a key frame on the 2nd frame.
3)make a rectangle(this is going to be your loading bar) and make it an Mc (Make sure the registration point is at the middle left ,and dont put a border, just the fill)
> place this in the art layer
4)now select the rectangle mc and give it an instance name of "bar" ( without the " ").
5)still in the art layer.make the bounding box of the bar
6) make a simple button , whatever you want. place it in the 2nd frame of the button layer
and put:
stop(); // stop playback
on that frame
7)Place these actions for the button :
on(release){ //when the left mouse button is released..
_root.gotoAndPlay("loaded"); //goto and play a frame labeled "loaded" on the main timeline
}
8)Now comes the scripting , click the first frame of the script layer and place this :
_root.stop(); //stops the main timeline
total = _root.getBytesTotal(); //gets the total size of your movie
loaded = _root.getBytesLoaded(); //gets what is already loaded
downloaded =Math.round( loaded / total * 100); //we get the percentage
if(downloaded < 100){ //if we havent loaded the whole movie..
bar._xscale = downloaded; //scale the Mc bar according to the percentage
}else{ // else :P
gotoAndStop(2); // go to and stop on the 2nd frame of this mc
}
9)on your main timeline label the frame were your movie begins as "loaded"
10)enjoy :)
-Xtreme