Strange Resize Problem

Hi guys!
Got a strange problem thats driving me crazy, so I really hope someone can help me out!

I´m trying to center a swf within a swf, never been a problem before, here´s the code!

var container:Sprite;
container = new Sprite();	

stage.addChild(container);
var url:URLRequest = new URLRequest("rl.swf");
var loader:Loader = new Loader();
loader.load(url);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
			
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
		
function completeHandler(event:Event):void
{			
	container.addChild(event.target.content);
	container.x = stage.stageWidth/2 - container.width /2;
	container.y = stage.stageHeight/2 - container.height /2;
	trace(container.width);
	trace(container.height);
			
	stage.addEventListener(Event.RESIZE, resizeHandler);
}
		
function resizeHandler(event:Event):void
{
	container.x = stage.stageWidth/2 - container.width /2;
	container.y = stage.stageHeight/2 - container.height /2;
	trace(container.width);
	trace(container.height);
}

Everything works out as long as I dont load any external object to the swf that I´m trying to center!
The completeHandler function does what its supposed to, but the resizeHandler function does not and I´m getting different values in the trace statement when I resize the window even though the functions are exactly the same, to me anyways.

Have I missed something with the eventlistener on the stage when I have externally loaded files present? Because the resizeHandler function works when I dont load the images.

Any help in this matter would be so very appreciated!

Thanks
/rundevo