Two movie clips that resize on browse ropening

I have this problem with my movies not scaling right on entry to the website. I have two movie clips, the first resizes to fit the browser window the second just shifts to be centered on screen. My problem is that it doesn’t scale right as soon as I open the website, only after resize. how do I get the resize function to start before any thing displays. I also don’t want it to be on a clip event cause I don’t want it have to run over and over every time it flips back and forth from frame to frame.

here’s the code:

trace(Stage.width);
trace(Stage.height);

function stageResize() {
scaleable_mc._width = Stage.width+50;
scaleable_mc._height = Stage.width*.5;
scaleable_mc._y = Stage.height*.5-scaleable_mc._height*.5;
centered_mc._x = Stage.width*.5;
centered_mc._y = Stage.height*.5;
}

//
Stage.scaleMode = “noScale”;
myListener = new Object();
myListener.onResize = function() {
stageResize();
};
Stage.addListener(myListener);

help me please

zago out