Positioning mc on full screen

Hi,

I have an object that I would like to sit in a specific location on a full screen. I have used this code:

Stage.align = “LT”;
Stage.scaleMode = “noScale”;
var pts:Array;
rez = new Object();
rez.onResize = function() {

zoom._x = Stage.width/2;
zoom._y = Stage.height/2;
content_mc._x = Stage.width/2;
content_mc._y = Stage.height/2;

};
Stage.addListener(rez);
rez.onResize();

I would like to place the next object to the left and below center… does anyone know how to do this?