Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/10/2008, 07:08
Avatar de Lynxcraft
Lynxcraft
 
Fecha de Ingreso: noviembre-2007
Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 16 años, 5 meses
Puntos: 51
Respuesta: Ayuda con precarga (en principio sencilla)

si quieres utilza el mio Xd

Código PHP:
stop();
var 
porcentaje:Number 0;
var 
arranca:Boolean true;
this.onEnterFrame = function ()
{
    if (
arranca
    {
     
        
this.total_frames this.getBytesTotal();
        
this.resto_frames this.getBytesLoaded();
        
porcentaje Math.floor(this.resto_frames this.total_frames 100);
        
// estos datos son los que nuestro en pantalla 


        
texto.text porcentaje "%";
        
barra._xscale=porcentaje

 
////////////////////////////////////////////
        
if (this.resto_frames == this.total_frames
        
        
        {
           
delete (this.onEnterFrame);
            
            
arranca false;
            
this.play();
            
        }
    }
}

__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft