Tema: onEnterframe
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/07/2004, 08:31
Nab
 
Fecha de Ingreso: junio-2004
Mensajes: 210
Antigüedad: 19 años, 10 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