Hola mgam:
Escribe tu código así:
Código actionscript:
Ver originalonClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
cargando = _root.getBytesLoaded();
percent = int(cargando/total*100);
texto.text = percent+"%";
gotoAndStop(percent);
if (cargando == total) {
_root.gotoAndStop(2);
}
}
Espero haberte sido de ayuda.