Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/08/2007, 12:14
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 6 meses
Puntos: 30
Re: ActionScript Preloader

prueba asi:
Código:
stop();


this.onEnterFrame = function() {

var carga:Number = this.getBytesLoaded()/this.getBytesTotal();
var amount:Number = this.getBytesLoaded()/this.getBytesTotal()*100;

this.loadText.text = Math.round(carga*100)+"%";
loader._xscale = amount;
if (amount == 100) {
this.gotoAndPlay(3);
delete this.onEnterFrame;
}
};

o lee el numero tres de este post:


http://www.forosdelweb.com/f16/curso-flash-gratis-507685/