Hola a todos;
Necesito ponerle un escuchador del evento COMPLETE a esta carga y me estoy liando, ¿alguien puede ayudarme??
Gracias!
Código:
var carga:Loader;
foto1_btn.addEventListener(MouseEvent.CLICK, cargaFoto1);
function cargaFoto1(evtObj:Event):void
{
carga = new Loader();
carga.load(new URLRequest("fotos/foto1.jpg"));
if(contenedor.numChildren > 0)
{
contenedor.removeChildAt(0);
contenedor.addChild(carga);
}else
{
contenedor.addChild(carga);
}
fondoBlanco.x = xA;
fondoBlanco.y = yA;
fondoBlanco.width = anchoA;
fondoBlanco.height =altoA;
contenedor.x = fondoBlanco.x+20;
contenedor.y = fondoBlanco.y+20;
}