[Q] MouseOver on Loader

Hii all
mouseOver.fla has been attached with this thread

Purpose:
When mouse over, the card will be enlarge

Problem:
When MouseOver on MovieClip “card”, it works fine …
However, when Mouse over on the picture. I get lost @_@
Seems the “picHolder” is on the top layer and blocked the MouseEvent … ???
I really have no idea on how to solve it ??

 
var ldr:Loader = new Loader();
var [url:URLRequest = new URLRequest("http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif](http://www.kirupa.com/forum/URLRequest)");
ldr.load(url);
card.picHolder.addChild(ldr);
card.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
card.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler);
function mouseOverHandler(e:Event):void {
  e.target.scaleX = 2;
  e.target.scaleY = 2;
}
function mouseOutHandler(e:Event):void {
  e.target.scaleX = 1;
  e.target.scaleY = 1;
}

Any body could help ?

Thasnk