2 different fscommands

I’m using this code for aligning a navigation to the bottom of my browser.

fscommand("fullscreen", "true");
Stage.align = "TL";
Stage.scaleMode = "noScale";
var myListener2:Object = new Object();
myListener2.onResize = function() {
    updateLocations2();
};
Stage.addListener(myListener2);
updateLocations2 = function () {
    bottomalign._y = Stage.height - 20;
};
updateLocations2();

and when i get to another point on the timeline(portfolio section) i have a slider that uses this for the fscommand, followed by the slider code.

fscommand("allowscale", false);

The problem that i’m having is that when the timeline gets to the point where the slider is used the fscommand(“allowscale”, false); takes over the original fscommand used for the nav. I need to use both, as the slider only seems to work properly with that code, and likewise with the bottom aligned navigation.

How can i get around this? I want to align my navigation to the bottom of the browser at all times, yet have my slider be relevant to the browser when it’s being used.

Is there another way to align the nav to the bottom of the browser? Maybe and onEnterframe();?