Disappearing 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 
Disappearing TextField
 
The immutable event flow

package {
  import flash.display.*;
  import flash.events.*;
  import flash.text.*;
    import flash.events.*;  
  public class Main extends Sprite {
    private var textField:TextField;
    public function Main(  ) {
      textField = new TextField(  );
      textField.text = "Click here";
      textField.autoSize = TextFieldAutoSize.LEFT;

      addChild(textField);

      stage.addEventListener(MouseEvent.CLICK, stageClickListener, true);

      textField.addEventListener(MouseEvent.CLICK, textFieldClickListener);
    }

    private function stageClickListener (e:MouseEvent):void {
      if (e.target == textField) {
        removeChild(textField);
        textField = null;
      }
    }

    private function textFieldClickListener (e:MouseEvent):void {
      trace("textFieldClickListener triggered");
    }
  }
}

        
Related examples in the same category
1.Add mouse click listener to 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.