Swapping the Depths of Children : Sprite « Development « Flash / Flex / ActionScript

Flash / Flex / ActionScript
1. Animation
2. Array
3. Class
4. Data Type
5. Development
6. Function
7. Graphics
8. Language
9. Network
10. Regular Expressions
11. Statement
12. String
13. TextField
14. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Flash / Flex / ActionScript » Development » Sprite 
Swapping the Depths of Children
 
package
{
    import flash.display.Sprite;
    import flash.events.*;
    public class Main extends Sprite
    {
        public function Main()
        {
            var aSpr:Sprite = new Sprite();
            var bSpr:Sprite = new Sprite();
            var cSpr:Sprite = new Sprite();
            var dSpr:Sprite = new Sprite();
    
            aSpr.addEventListener(MouseEvent.MOUSE_DOWN, swapSprites);
            bSpr.addEventListener(MouseEvent.MOUSE_DOWN, swapSprites);
            cSpr.addEventListener(MouseEvent.MOUSE_DOWN, swapSprites);
            dSpr.addEventListener(MouseEvent.MOUSE_DOWN, swapSprites);
    
            addChild(aSpr);
            addChild(bSpr);
            addChild(cSpr);
            addChild(dSpr);
        }
    
        private function swapSprites(evt:Event):void
        {
            swapChildren((evt.target as Sprite), getChildAt(numChildren - 1));
        }
    }
}

        
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. Manipulating Objects in Containers Collectively
9. Applies a black color transformation to group, causing all children to be colored solid black
10. Containment Events
11. Using the buttonMode of the Sprite
12. Using the hitArea
13. Using hitTestPoint
14. Reparenting Display Objects
15. Advanced Masks
16. Masks
17. Building an FLV Playback Application
w__ww.j___a__va__2__s__._c__o_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.