当前位置 博文首页 > Flex中给按钮添加链接点击链接打开网页的方法

    Flex中给按钮添加链接点击链接打开网页的方法

    作者:admin 时间:2021-08-31 18:52

    Flex中如何给一个按钮添加链接,点击链接打开一个网页呢?
    可以用 navigateToURL 或者 htmlText 实现,请看下面的例子
    复制代码 代码如下:

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="initApp()"
    layout="absolute" width="278" height="244">
    <mx:Script>
    <![CDATA[
    internal function initApp():void{
    var str:String = "<a target='_blank' href='http://www.idceye.cn/'>草山狐随笔</a>";link.htmlText = str;
    }
    internal function openUrl():void{
    navigateToURL(new URLRequest("http://www.idceye.cn/"), "_blank");
    }]]>
    </mx:Script>
    <mx:Button x="72" y="117" label="草山狐随笔" fontSize="13" click="openUrl()"/>
    <mx:Text text="idceye" x="72" y="47" fontSize="13"/>
    </mx:Application>
    jsjbwy
下一篇:没有了