Removing an Item from the Display List : Sprite « Development « Flash / Flex / ActionScript






Removing an Item from the Display List

 
package {
  import flash.display.Sprite;
  import flash.text.TextField;
  import flash.events.MouseEvent;

  public class RemoveChildExample extends Sprite {
    private var _label:TextField;
    
    public function RemoveChildExample(  ) {
      _label = new TextField(  );
      _label.text = "Some Text";
      
      addChild( _label );
      
      stage.addEventListener( MouseEvent.CLICK, removeLabel );
    }
    
    public function removeLabel( event:MouseEvent ):void {
      removeChild( _label );
    }
  }
}

        








Related examples in the same category

1.Add TextField to Sprite
2.Adding an Item to the Display List
3.addChild( ) method doesn't guarantee that a display object is added to 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