alnxp 0 Denunciar post Postado Abril 14, 2007 ae galera, é o seguinte; Stage.scaleMode = "noScale";Stage.align = "TL";Stage.addListener(this);onResize = function() { logo._x = Stage.width - (logo._width + 10); logo._y = 10;}onResize(); arrumei esse código aqui mesmo no forum, mas gostaria de saber como faço para alinhar de forma inferior, ou seja, a parte mais baixa da tela, tentei trocar o TL para TR, BL, BR, mas nenhum funciona... Compartilhar este post Link para o post Compartilhar em outros sites
Public2004 79 Denunciar post Postado Abril 14, 2007 Olá, Tente assim: Stage.scaleMode = "noScale";Stage.align = "TL";Stage.addListener(this);onResize = function() { logo._x = Stage.width - (logo._width + 10); logo._y = Stage.height - 10;}onResize(); Abs. Compartilhar este post Link para o post Compartilhar em outros sites