Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/07/2010, 21:53
liepzingsystem
 
Fecha de Ingreso: diciembre-2009
Ubicación: Guadalajara, Jalisco
Mensajes: 300
Antigüedad: 14 años, 4 meses
Puntos: 13
Respuesta: flash - precarga no para en stop

Intenta esto:

Código ActionScript:
Ver original
  1. stop();
  2. onEnterFrame = function () {
  3.     porcentaje = Math.round((getBytesLoaded()/getBytesTotal()*100));
  4.     fil_mc._xscale = porcentaje;
  5.     percent_txt.text = porcentaje;
  6.     if (porcentaje == 100) {
  7.         play();
  8.         delete onEnterFrame;
  9.     }
  10. };

Suerte.