onEnterFrame = function () {
var cargado = this.getBytesLoaded();
var total = this.getBytesTotal();
var porcentaje = cargado/total;
status.text = Math.round(porcentaje*100)+"%";
if (cargado>=total && total>4) {
this.gotoAndPlay(2);
delete onEnterFrame;
}
};
este fue el codigo que use.. saludos