Reparenting Assets WordHighlighter : wordwrap « 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 » wordwrap 
Reparenting Assets WordHighlighter
 

package {
  import flash.display.*;
  import flash.text.*;
  import flash.events.*;

  public class WordHighlighter extends Sprite {
    private var word1:Sprite;
    private var text1:TextField;

    private var word2:Sprite;
    private var text2:TextField;

    private var bgRect:Shape;

    public function WordHighlighter (  ) {
      word1 = new Sprite(  );
      text1 = new TextField(  );
      text1.text = "Products";
      text1.selectable = false;
      text1.autoSize = TextFieldAutoSize.LEFT;
      word1.addChild(text1)
      text1.addEventListener(MouseEvent.MOUSE_OVER, mouseOverListener);

      word2 = new Sprite(  );
      text2 = new TextField(  );
      text2.text = "Services";
      text2.selectable = false;
      text2.autoSize = TextFieldAutoSize.LEFT;
      word2.x = 75;
      word2.addChild(text2)
      text2.addEventListener(MouseEvent.MOUSE_OVER, mouseOverListener);

      addChild(word1);
      addChild(word2);

      bgRect = new Shape(  );
      bgRect.graphics.lineStyle(1);
      bgRect.graphics.beginFill(0xCCCCCC1);
      bgRect.graphics.drawRoundRect(0060158);
    }


    private function mouseOverListener (e:MouseEvent):void {
      if (!e.target.parent.contains(bgRect)) {
        e.target.parent.addChildAt(bgRect, 0);
      }
    }
  }
}

        
Related examples in the same category
1. Set wordwrap to true
2. Set auto size to left
w__w__w.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.