Dynamic window sizing question

First off, you really have a great site here. I have been doing a ton of browsing, and have really liked what I have seen, I have been learning a lot.

I have been inspired of late by drawingart.org - which IMHO is a very slick website. But I can’t for the life of me figure out how to get that bottom bar stick to the bottom with dynamic sizing, like they do. I use

import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;

stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.ACTIVATE, activateHandler);
stage.addEventListener(Event.RESIZE, resizeHandler);

function activateHandler(event:Event):void {
            trace("activateHandler: " + event);
        }

function resizeHandler(event:Event):void {
            trace("resizeHandler: " + event);
            trace("stageWidth: " + stage.stageWidth + " stageHeight: " + stage.stageHeight);
        }

to get the dynamic window.

But how do I get the pesky bar stick to the bottom?

I am working on OS X with Flash CS3.

Anybody care to share a code snippet, or at least point me in the right direction?

–hov