Movieclip align question

question:
How can I align a movie clip to bottom right of the stage and keep it there when the browser resize?

Update:
I was able to figure out the code:
here it is in case someone needs it

Stage.scaleMode = “noScale”;
Stage.align = “TL”;
setStage();
var stageListener:Object = new Object();
Stage.addListener(stageListener);
stageListener.onResize = function() {
setStage();
};
function setStage() {
var WIDTH:Number = Stage.width;
var HEIGHT:Number = Stage.height;
logo._x = WIDTH - logo._width;
logo._y = HEIGHT - logo._height;
}