si quieres utilza el mio Xd
Código PHP:
stop();
var porcentaje:Number = 0;
var arranca:Boolean = true;
this.onEnterFrame = function ()
{
if (arranca)
{
this.total_frames = this.getBytesTotal();
this.resto_frames = this.getBytesLoaded();
porcentaje = Math.floor(this.resto_frames / this.total_frames * 100);
// estos datos son los que nuestro en pantalla
texto.text = porcentaje + "%";
barra._xscale=porcentaje
////////////////////////////////////////////
if (this.resto_frames == this.total_frames)
{
delete (this.onEnterFrame);
arranca = false;
this.play();
}
}
}
;