加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Flex s:Label 设立超链接

发布时间:2020-12-15 04:27:05 所属栏目:百科 来源:网络整理
导读:Flex s:Label 设置超链接 在Flex中,需要在label上设置一个超链接,类似与html中的超链接: ? a href="www.iteye.com"iteyer/a ? 在Flex中可以如下设置,完成同样的效果: ? s:Label id="textLabel" buttonMode="true" ??? ??? ??? ??? ??? ?click="textLabe

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");????
}

?

navigateToURL(url,mode);
mode:  _self (本窗口打开),_blank(新窗口打开),_top

?

?

另外,还可以用<s:LinkButton>,<s:LinkBar> 以及<s:RichEditableText>

?

<s:RichEditableText?
? ?? ?? ?? ?editable="false" >
? ?? ?? ?? ?<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>



转载:http://www.myexception.cn/flex/661795.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读