Estas son las pruebas que estoy haciendo,
this.Barra._yscale = 0;
onEnterFrame = function () {
_root.stop();
total = _root.getBytesTotal();
cargado = _root.getBytesLoaded();
porcentaje = (cargado*100)/total;
this.Barra._yscale += (porcentaje-_yscale)*0.5;
carga = Math.round(porcentaje)+"%";
carga2 = Math.round(_root.getBytesTotal()/1024)+" Kb ";
if (total == cargado) {
_root.play();
delete onEnterFrame;
}
};
El preloader funciona, pero no logro que funcione el efecto easing (me guie por este tuto)
http://www.cristalab.com/tutoriales/...asing-en-flash
Gracias