Set link color : HtmlText : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » HtmlText »

 

Set link color


 

package {
  import flash.display.Sprite;
  import flash.text.TextField;
  public class Main extends Sprite {
    public function Main(  ) {
      var field:TextField = new TextField(  );
    
        var htmlLink:String = "<font color='#0000FF'><u>";
        htmlLink += "<a href='http://www.navioo.com'>Website</a>";
        htmlLink += "</u></font>";
        field.htmlText = htmlLink;

        addChild(field);
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» HtmlText