Código :
stop();
onEnterFrame = function(){
porcentaje = Math.floor(getBytesLoaded() * 100 / getBytesTotal())
txt_porcentaje.text=porcentaje + "%";
barrita_de_carga.gotoAndStop(porcentaje + 1);
if (porcentaje == 100){
gotoAndPlay("INICIO","1");
}
}
