Convert to Bitmap

Hello …

var req:URLRequest=new URLRequest(“img1.jpg”)
var ldr:Loader = new Loader();
ldr.load(req)

ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, loadFNC)
function loadFNC(evt:Event):void
{
var bmp:Bitmap = Bitmap (evt.target.content)
bmp.smoothing=true;
addChild(bmp)
}

swf and the image problem on different domains --> “var bmp:Bitmap = Bitmap (evt.target.content)” line consists of. How do I resolve this ??

but, swf no problem and the picture is not the same domains.

Thank You…