HtmlText中加入超链接 博客分类: Flex HtmlText超链接
程序员文章站
2024-03-17 09:57:40
...
以下是Label中加入超链接的例子:
protected function lb_creationCompleteHandler(event:FlexEvent):void { lb.htmlText="测试内容请<a href='event:http://www.sina.com.cn'>点击</a>"; } protected function lb_linkHandler(event:TextEvent):void { if(event.text == "http://www.sina.com.cn"){ navigateToURL(new URLRequest(event.text)); } } <mx:Label id="lb" creationComplete="lb_creationCompleteHandler(event)" link="lb_linkHandler(event)" selectable="true" />