Hello everybody!
I have a question about aligning objects on the stage. I searched around the forums but whis no luck.
For example: I am centering the stage using this code:
Stage.scaleMode = "noScale";
Stage.align = "";
but I also want that my_menu is at the top of the browser. So i tried something stupid like:
Stage.scaleMode = "noScale";
Stage.align = "";
my_menu.align = "T";
but of course it doesn’t work
Could someone please tell me the correct way to do this?
Thanks.