Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/08/2010, 12:15
Avatar de ronnyra
ronnyra
 
Fecha de Ingreso: diciembre-2009
Mensajes: 173
Antigüedad: 14 años, 11 meses
Puntos: 1
ayuda con una precarga

hola amigos hice una precarga sencilla para mi web en php pero no c como redirigirla hacia el index.php el codigo en AS que tengo es este

Código ACTION_SCRIPT:
Ver original
  1. stop();
  2.  
  3. addEventListener(Event.ENTER_FRAME, lodeando);
  4.  
  5. function lodeando(event:Event):void{
  6.    
  7.     var bytesTotales = stage.loaderInfo.bytesTotal;
  8.     var bytesCargados = stage.loaderInfo.bytesLoaded;
  9.     var porcentaje = Math.round(bytesCargados*100/bytesTotales);
  10.    
  11.     textoPorcentaje.text = porcentaje + "% Cargado...";
  12.     cargaAnimada_mc.gotoAndStop(porcentaje);
  13.    
  14.     if(bytesCargados == bytesTotales){
  15.        
  16.         addEventListener(Event.ENTER_FRAME, lodeando);
  17.         gotoAndPlay(2);
  18.         textoPorcentaje.text = "";
  19.         removeChild(textoPorcentaje);
  20.         removeChild(cargaAnimada_mc);
  21.         }
  22.    
  23. }
POR FA LES AGRADESCO SU AYUDA....