Add mouse listener to state : MouseEvent « 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 » MouseEvent 
Add mouse listener to state
 

package {
  import flash.display.*;
  import flash.events.*;
  public class GetChildAtExample extends Sprite {
    public function GetChildAtExample(  ) {
   
      var color:Array = 0xFF00000x9900000x6600000x00FF00,
                          0x0099000x0066000x0000FF0x000099,
                          0x0000660xCCCCCC ];
   
      for var i:int 0; i < 10; i++ ) {
        var circle:Shape = createCirclecolor[i]10 );
        circle.x = i;
        circle.y = i + 10// the + 10 adds padding from the top
        
        addChildcircle );
      }      
      
      stage.addEventListenerMouseEvent.CLICK, updateDisplay );
    }
   
    public function updateDisplayevent:MouseEvent ):void {
      setChildIndexgetChildAt(0), numChildren - );
    }
    
    public function createCirclecolor:uint, radius:Number ):Shape {
      var shape:Shape = new Shape(  );
      shape.graphics.beginFillcolor );
      shape.graphics.drawCircle00, radius );
      shape.graphics.endFill(  );
      return shape;
    }
  }
}
                          

        
Related examples in the same category
1. Responding to Mouse and Key Events
2. Mouse Events and Overlapping Display Objects
3. mouseEnabled = false
4. Finding the mouse pointer's position
5. A custom mouse pointer
6. Handling Mouse Events "Globally"
7. Global Mouse Down Sensor
8. Mouse Events and Modifier Keys
9. Mouse Event Hierarchy
10. All types of mouse event
11. Using MouseEvent in Conjunction with the Mouse
12. Creating Mouse Interactions
13. Add mouse move listener
14. Add mouse up and down listener
15. Rollover Test
16. Click Test
17. Post-Event Screen Updates
www__._j_a___v__a__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.