Intenta esto:
Código ActionScript:
Ver originalstop();
onEnterFrame = function () {
porcentaje = Math.round((getBytesLoaded()/getBytesTotal()*100));
fil_mc._xscale = porcentaje;
percent_txt.text = porcentaje;
if (porcentaje == 100) {
play();
delete onEnterFrame;
}
};
Suerte.