![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
12/02/2003, 13:03
|
| | Fecha de Ingreso: diciembre-2001 Ubicación: Santo Domingo, R.D.
Mensajes: 240
Antigüedad: 23 años, 1 mes Puntos: 0 | |
Hola maltos. Asi lo he hecho y como quiera me manda al primer frame de la movie del cual la estoy llamando.
Este es el codigo que tengo: onClipEvent (load) {
b_total=_root.getBytesTotal();
}
onClipEvent (enterFrame) {
b_loaded=_root.getBytesLoaded();
if (b_loaded >= b_total) {
_root.gotoAndPlay("inicio");
} else {
porcentaje=(b_loaded/b_total)*100;
barra._xscale=porcentaje;
}
}
gracias |