EL PRIMER PRELOADER LO REALIZA SIN MAYORES PROBLEMAS, ES EN EL DE LA PELICULA QUE CARGO CON LOADMOVIE (tiene el mismo preloader) EL QUE YA NO HACE NADA


Este es el actionscript del preloader:
onClipEvent (enterFrame) {
with (this._parent) {
porcentaje = Math.round((getBytesLoaded()/getBytesTotal())*100);
porcentaje_txt.text = porcentaje+"% de "+Math.round(getBytesTotal()/1024)+" Kb";
if(porcentaje == 100){
this._parent.gotoAndPlay(_currentframe+1);
}
}
}
De antemano muchas gracias.
