intenta asi:
Código:
var carga:Loader=new Loader()
foto1_btn.addEventListener(MouseEvent.CLICK, cargaFoto1);
carga.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
function completeHandler(event:Event):void {
trace("fin");
}
function cargaFoto1(evtObj:MouseEvent):void {
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;
}
si presionas f1 en flash ahí viene toda la documentación.