Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/08/2008, 13:25
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 preloader flash

este es el código de preload que utilizo como sabrás tiene que ir en el primer fotograma de película


stop();
var persent1 = 0;
var status1 = true;
this.onEnterFrame = function ()
{
if (this.status1 == true)
{
this.miclip._visible = false;
this.miclip.stop();
this.total_frame1 = this.getBytesTotal();
this.current_frame1 = this.getBytesLoaded();
persent1 = Math.floor(this.current_frame1 / this.total_frame1 * 100);
this.bar._xscale = persent1;
this.txtPercent = persent1 + "%";
if (this.current_frame1 == this.total_frame1)
{
this.miclip._visible = true;
this.miclip.play();
this.play();
var status1 = false;
}
}
}
;
__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft