| |||
Respuesta: Coordenadas a los objetos en AS3 yo siempre alineo todo arriba a la izquierda con este codigo stage.align = StageAlign.TOP_LEFT; stage.scaleMode = StageScaleMode.NO_SCALE; Luego creo un evento rezise stage.addEventListener(Event.RESIZE, resizeHandler); private function resizeHandler(event:Event):void { y aqui voy posionando haciendo algunos calculos por ej si quiero un objeto centrado al medio objeto.x = (stage.stageWidth / 2) - (objeto.width / 2) objeto.y = (stage.stageHeigth / 2) - ( objeto.heigth /2) o si lo quiero abajo del todo objeto.y = (stage.stageHeigth) - ( objeto.heigth) } y todo cuestion de saber donde lo quieres posicionar y hacer la formula |
Etiquetas: |