Read href tag HELP !!
I have : <p ><a href="http://www.example.com" target="_blank"><span>link example</span></a></p> into TextFlow
I need collect the href data to an textInput when select 'link example' words.
I add a Listener:
TextFlow.addEventListener(SelectionEvent.SELECTION_CHANGE,selectionChangeListener,false,0,true);
and :
private function selectionChangeListener(evt:SelectionEvent):void
{
/// how can I read href tag ?
myTxt.text = evt ???????
}
thanks
