首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

Flex s:Label 设立超链接

2012-09-20 
Flex s:Label 设置超链接在Flex中,需要在label上设置一个超链接,类似与html中的超链接:?a hrefwww.itey

Flex s:Label 设置超链接

在Flex中,需要在label上设置一个超链接,类似与html中的超链接:

?

<a href="www.iteye.com">iteyer</a>

?

在Flex中可以如下设置,完成同样的效果:

?

<s:Label id="textLabel" buttonMode="true"
??? ??? ??? ??? ??? ?click="textLabel_clickHandler(event)" color="blue" text="link"
??? ??? ??? ??? ??? ?textDecoration="underline"/>

?

?

protected function textLabel_clickHandler(event:MouseEvent):void
{
??? ?? navigateToURL("http://www.baidu.com", "blank");???
}

?

? ?? ?? ?? ?<s:textFlow>
? ?? ?? ?? ?? ? <s:TextFlow>
? ?? ?? ?? ?? ?? ???<s:p>
? ?? ?? ?? ?? ?? ?? ?? ? <s:a href="http://www.51.com">51.com</s:a>
? ?? ?? ?? ?? ?? ???</s:p>
? ?? ?? ?? ?? ? </s:TextFlow>
? ?? ?? ?? ?</s:textFlow>
? ?? ???</s:RichEditableText>

?

?

热点排行