Disappearing TextField : MouseEvent « TextField « 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 » 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
ww_w__.jav___a__2___s_.c_om__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.