Manipulating Objects in Containers Collectively : Sprite « Development « Flash / Flex / ActionScript






Manipulating Objects in Containers Collectively

 

package {
    import flash.display.GradientType;
    import flash.display.Sprite;
    import flash.geom.Matrix;
         
    public class Main extends Sprite {
    
         public function Main() {
    
            var rect1:Sprite = new Sprite(  );
            rect1.graphics.lineStyle(1);
            rect1.graphics.beginFill(0x0000FF, 1);
            rect1.graphics.drawRect(0, 0, 75, 50);
            
            var rect2:Sprite = new Sprite(  );
            rect2.graphics.lineStyle(1);
            rect2.graphics.beginFill(0xFF0000, 1);
            rect2.graphics.drawRect(0, 0, 75, 50);
            rect2.x = 50;
            rect2.y = 75;
            
            var group:Sprite = new Sprite(  );
            
            group.addChild(rect1);
            group.addChild(rect2);
            
            addChild(group);
            
            group.x = 40;
            group.scaleY = .15;
            group.rotation = 15;
    
         }
    
    }
}

        








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.Removing an Item from the Display List
5.Moving Objects Forward and Backward
6.Change child index
7.Depth test
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