Flex: How to call an actionscript function from htmlText anchor

烂漫一生 提交于 2019-12-05 19:50:33

If this anchor is an href from an tag, you can dispatch events and handle them like that:

<mx:Script>
    <![CDATA[
        private function linkHandler(e:TextEvent):void
        {
            if (e.text == "test")
                trace("test called")
        }
    ]]>
</mx:Script>
<mx:creationComplete>
    <![CDATA[
        textArea.htmlText="<a href='event:test'>Link!</a>";
    ]]>
</mx:creationComplete>

<mx:TextArea id="textArea" link="linkHandler(event)" />  

i got the answer here..

The ExternalInterface class will provide you with a communication channel between Javascript and Actionscript. Using this class, you can listen for calls from the page's Javascript, as well as, dispatch messages and data back.

The links below are referencing AS 3.0. Hope that helps!

ExternalInterface Docmentation

Usage Description

Sample Code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!