Preloader question

Here is the same idea as stringy’s, just a little shorter (i believe it was Jbum that helped with this):
[AS]
getRatio = this.getBytesLoaded()/this.getBytesTotal();
this.loadBar._width = getRatio157;
mc._x = loadBar._x + loadBar._width;
loadText.text = Math.floor(getRatio
100) + ‘%’;
if (getRatio == 1) {
this.gotoAndPlay(3);
}
[/AS]