onResize question

I’m trying to figure out how to get my logo to stay at the bottom right of the page all the time. I used Stage.align and onResize but the problem is that my logo ony aligns when you go to resize the window, and it “jumps” into place. I want it to pop up in the bottom right and then stay there, regardless of the window size. You can view it at This is my code:


stop()
Stage.align = "BL";
Stage.scaleMode = "noScale";
stop ();
logomc._x = Stage.width - logomc._width;
tower._y = Stage.height - tower._height;


sizeListener = new Object();
sizeListener.onResize = function() {
logomc._x = Stage.width - logomc._width;
	tower._y = Stage.height - tower._height;
};
Stage.addListener(sizeListener);

Thank you for your help!