IM FED UP! Movie Clip Position on Browser Resize

Ok… i’m boggled… why isn’t this working?


Stage.scaleMode = "noScale";

var myListener:Object = new Object();
myListener.onResize = function() {
    bottomRightPiece._x = Stage.width;
    bottomRightPiece._y = Stage.height;
    trace(bottomRightPiece._x+" compared to "+ Stage.width)

};
    Stage.addListener(myListener);

I want the movie clip to be at the bottom right corner or the stage at all times when the browser is resized. The name is the clip is bottom right piece. The flash movie takes up the whole browser with no scale. The movie clip is always over or under the point in space its suppose to be. When i trace the value or the movie clip’s _x… its the same as the Stage.width… but it doesnt portray that visually on the stage… its way off! Why does something so simple have to be so complicated? HELP!