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

Thank you

link|improve this question

feedback

3 Answers

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)" />
link|improve this answer
feedback

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

link|improve this answer
browser may not be support for external function, or javascript could be disabled.. – Tolgahan Albayrak May 16 '09 at 0:37
feedback
up vote 0 down vote accepted

i got the answer here..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.