
Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
minWidth="1024" minHeight="768">
<mx:Script>
<![CDATA[
[Bindable]
private var _htmlText:String = '<a href="event:ASD">link</a>';
protected function textarea1_linkHandler(event:TextEvent):void
{
// TODO Auto-generated method stub
trace (event.text);
}
]]>
</mx:Script>
<mx:TextArea htmlText="{_htmlText}" link="textarea1_linkHandler(event)"/>
</mx:Application>