Resizing inquiry

i have a simple flash file with this code on it

    
    Stage.scaleMode = "noScale";
    Stage.align;
    myListener = new Object ();
    myListener.onResize = function () {
        Stage.width;
        Stage.height;
    };
    Stage.addListener(myListener);
    Stage.showMenu = false;

i load it into another mc that i want to have full screen in a browser, but because of the code above it refuses… how do i fix this ?