vote up 0 vote down star

Hi,

In my flex project I am using XML to populate TextFlow using:

TextFilter.importToFlow(XML(str), TextFilter.PLAIN_TEXT_FORMAT);

I woud like to add html links to the textflow. For that I adding html a tag in xml but I am getting parser error(malformed xml).

var fixed:String;
fixed = fixed.replace(link, "<a href='event:xyz' >"+link+"</a>");

XML:
<TextFlow xmlns="http://ns.adobe.com/textLayout/2008"/>
added link as <a href='event:xyz' >link</a>
</TextFlow>
flag

1 Answer

vote up 0 vote down

Try changing your TextFilter.PLAIN_TEXT_FORMAT to TextFilter.TEXT_LAYOUT_FORMAT.

link|flag

Your Answer

Get an OpenID
or

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