欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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" /> 
相关标签: HtmlText 超链接