A stretchy layout : stage « Development « Flash / Flex / ActionScript






A stretchy layout

 
package {
  import flash.display.*;
  import flash.events.*;

  public class Main extends Sprite {
    private var rect:Sprite = new Sprite(  );
    public function Main() {
      rect.graphics.lineStyle(  );
      rect.graphics.beginFill(0x0000FF);
      rect.graphics.drawRect(0, 0, 150, 75);
      addChild(rect);

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

      positionRectangle(  );
    }

    private function resizeListener (e:Event):void {
      positionRectangle(  );
    }

    private function positionRectangle (  ):void {
      rect.x = stage.stageWidth - rect.width;
      rect.y = 0;
    }
  }
}

        








Related examples in the same category

1.Setting the Frame Rate
2.Traversing Objects in a Display Hierarchy
3.Recursive display list tree traversal
4.Distinguishing Events Targeted at an Object from Events Targeted at That Object's Descendants
5.responds to mouse clicks that occur over any object on the display list, but not over a vacant area of the Stage instance
6.Simple Scribble
7.Working with the Stage
8.Local Global Sample