(MX) I need a preloader that is NOT attached to onClipEvent

Hi people
I know scene are ‘‘bad’’ but this is a project already made that i have to update so what I really need to do is after the movie is loaded go to frame 1 scene 2. It wont go. I did try to copy scene 2 into MC but it all get in a mess…
on ClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)100)).25;
per = int(percent);
percentage = per+"%";
loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(“Scene 2”, 1);
}
}

Can anyone suggest a preloader that display bits loaded or percentage (no bar needed) and that I can make it go to scene.
Free beers for all!
thnx

Put this in the first frame

stop();
this.onEnterFrame = function() {
	var loading = this.getBytesLoaded();
	var total = this.getBytesTotal();
	var percent = Math.round((loading/total)*100);
	percentage = percent+"%";
	loadBar._width = per;
	if (percent>99) {
		this.gotoAndStop("Scene 2", 1);
	}
};

scotty(-: