First I would create a "menu" mc (make sure to give it an instance name of menu) with the 6 buttons inside. Make sure you align all the buttons above the y-axis (y will be a negative number) and in the middle of the x-axis otherwise the values below wouldn't quite work.
Code:
Stage.scaleMode = "noScale";
Stage.align = "tl";
stageListener = new Object();
function setMenu() {
menu._y = Stage.height-20;
menu._x = Stage.width/2;
}
stageListener.onResize = function () {
setMenu();
}
Stage.addListener(stageListener);
setMenu();
Bookmarks