Código:
stop(); var miContenedor:Loader = new Loader(); var a=0; import fl.transitions.*; import fl.transitions.easing.*; function boton (e:Event) : void { miContenedor.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, statusdeCarga); miContenedor.contentLoaderInfo.addEventListener(Event.COMPLETE, imagenLista); var llamarImagen: URLRequest=new URLRequest("1.jpg"); miContenedor.load(llamarImagen); miContenedor.alpha =.0; function statusdeCarga(e:ProgressEvent) { } function imagenLista(e:Event) { addChild(miContenedor); var mostrar:Tween = new Tween(miContenedor,"alpha",Strong.easeInOut, .0, 1,3, true); }} btn.addEventListener(MouseEvent.CLICK, boton);