Scale content problem... (CS3)

Hey Guys,
I have a problem I can’t figure out and I was wondering if anyone might have a suggestion. I have a photo page on which I have a movieclip (instance name - bigpic_mc) that I use to call up external images. It’s dimensions are 400x300. On the same page I have another movieclip INSIDE which are the thumbnails and AS3 for each. I’ve set the scaleContent to true on the main page but the externally loaded images don’t scale. I’ve included the code for the parent and child page. Can anyone point me in the right direction? I’m totally confused. I’m still getting the hang of AS3. Thanks for any help you might provide.

Sincerely,

Bryan


Parent AS

bigpic_mc.scaleContent = true;


Child AS

var bgalleryFolder:String = “bryan_pics”;

var big_pic:Loader = new Loader();

var bimg1Req:URLRequest = new URLRequest(bgalleryFolder + “/Bryan1s.jpg”);

function targetOver(event:MouseEvent):void {
event.target.gotoAndPlay(“over”);
}

function targetOut(event:MouseEvent):void {
event.target.gotoAndPlay(“out”);
}

function bpic1Down(event:MouseEvent):void {
big_pic.load(bimg1Req);
MovieClip(parent).bigpic_mc.removeChildAt(big_pic);
MovieClip(parent).bigpic_mc.addChild(big_pic);
}

bpic1_mc.buttonMode = true;
bpic1_mc.addEventListener(MouseEvent.ROLL_OVER, targetOver);
bpic1_mc.addEventListener(MouseEvent.ROLL_OUT, targetOut);
bpic1_mc.addEventListener(MouseEvent.MOUSE_DOWN, bpic1Down);