addChild( ) method doesn't guarantee that a display object is added to the display list. : Sprite « Development « Flash / Flex / ActionScript






addChild( ) method doesn't guarantee that a display object is added to the display list.

 

package {
  import flash.display.*;
  public class CircleExample extends Sprite {
    public function CircleExample(  ) {
      var red:Shape = createCircle( 0xFF0000, 10 );
      red.x = 10;
      red.y = 20;
      var green:Shape = createCircle( 0x00FF00, 10 );
      green.x = 15;
      green.y = 25;
      var blue:Shape = createCircle( 0x0000FF, 10 );
      blue.x = 20;
      blue.y = 20;
      
      addChild( red );
      addChild( blue );
      
      addChildAt( green, 1 );
    }
    
    public function createCircle( color:uint, radius:Number ):Shape {
      var shape:Shape = new Shape(  );
      shape.graphics.beginFill( color );
      shape.graphics.drawCircle( 0, 0, radius );
      shape.graphics.endFill(  );
      return shape;
    }
  }
}

        








Related examples in the same category

1.Add TextField to Sprite
2.Adding an Item 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