Add mouse click listener to TextField : MouseEvent « TextField « Flash / Flex / ActionScript

Home
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
Flash / Flex / ActionScript » TextField » MouseEvent 
Add mouse click listener to TextField
 
package{
    import flash.display.GradientType;
    import flash.display.Sprite;
    import flash.geom.Matrix;
    import flash.events.*;
    import flash.text.*;     
    public class Main extends Sprite {
    
         public function Main() {
            var t:TextField = new TextField(  );
            t.text = "click here";
            t.autoSize = TextFieldAutoSize.LEFT;
            stage.addChild(t);
            
            stage.addEventListener(MouseEvent.CLICK, clickListener, true);
            
            stage.addEventListener(MouseEvent.CLICK, clickListener, false);
         }
        private function clickListener (e:MouseEvent):void {
          var phase:String;
        
          switch (e.eventPhase) {
            case EventPhase.CAPTURING_PHASE:
            phase = "Capture";
            break;
        
            case EventPhase.AT_TARGET:
            phase = "Target";
            break;
        
            case EventPhase.BUBBLING_PHASE:
            phase = "Bubbling";
            break;
          }
          trace("Current event phase: " + phase);
        }
    }
}

        
Related examples in the same category
1.Disappearing TextField
2.Working with Advanced Text Layout
3.Highlight a paragraph when the user clicks a character
4.Drag and drop text
5.To remove the highlight when the mouse moves away from both text fields, we would first register both text fields to receive the MouseEvent.MOUSE_OUT event
6.Clickable TextField
7.Using multiLine and TextMetrics: set the characters in the line underneath the user's mouse to red.
8.Unicode characters
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.