Question

Is there any way to call an action script function from an anchor which defined in TextArea component's htmlText property.

Thank you

Was it helpful?

Solution 2

i got the answer here..

OTHER TIPS

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)" />  

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top