24/07/2004, 08:31
|
| | Fecha de Ingreso: junio-2004
Mensajes: 210
Antigüedad: 20 años, 7 meses Puntos: 0 | |
Prueba cambiando el codigo del clip por este:
onClipEvent (load) {
controller=true;
total = this.getBytesTotal();
}
onClipEvent (enterFrame) {
cargado = this.getBytesLoaded();
if(controller==true){
if (cargado>=total) {
controller=false;
this.gotoAndStop(2);
}
}
}
Espero te funcione.
Saludos |