Adding an Item to the Display List : Sprite « Development « Flash / Flex / ActionScript






Adding an Item to the Display List

 
package {
  import flash.display.DisplayObjectContainer;
  import flash.display.Sprite;
  import flash.text.TextField;

  public class DisplayListExample extends Sprite {
    public function DisplayListExample(  ) {
      var hello:TextField = new TextField(  );
      hello.text = "hello";
      
      addChild( hello );
    }
  }
}

        








Related examples in the same category

1.Add TextField to Sprite
2.addChild( ) method doesn't guarantee that a display object is added to the display list.
3.Removing an Item from the Display List
4.Moving Objects Forward and Backward
5.Change child index
6.Depth test
7.Manipulating Objects in Containers Collectively
8.Applies a black color transformation to group, causing all children to be colored solid black
9.Containment Events
10.Using the buttonMode of the Sprite
11.Using the hitArea
12.Using hitTestPoint
13.Swapping the Depths of Children
14.Reparenting Display Objects
15.Advanced Masks
16.Masks
17.Building an FLV Playback Application