Stage Aligning :(

[left]inyer.onResize = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
this._y = Stage.height+yoffset;
};
inyer.onEnterFrame = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
this._y = Stage.height+yoffset;
};
hello.onResize = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
var xoffset = this._x-bounds.xMin;
this._y = Stage.height+yoffset;
this._x = Stage.width+xoffset;
};
hello.onEnterFrame = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
var xoffset = this._x-bounds.xMin;
this._y = Stage.height+yoffset;
this._x = Stage.width+xoffset;
};
Stage.addListener(Interface);
Stage.align = “TM”;
Stage.scaleMode = “noScale”;[/left]

as you can see from above, i have to MCs one named hello and the other named inyer.
i would like the one named inyer just tobe aligned to the bottom of a html browser, but i would like the hello to be aligned to the bottom but also to the right.

my above atempted worked for the inyer but the hello does not align to the right. can anyone please help me ?

thank you all for being so wonderful and helpfull. :smiley: :smiley: