在我的flex项目中,我使用XML来填充TextFlow:
TextFilter.importToFlow(XML(str), TextFilter.PLAIN_TEXT_FORMAT);
我想在文本流中添加html链接。为此,我在xml中添加了一个标签,但是我得到了解析器错误(格式错误的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>
答案 0 :(得分:0)
尝试将TextFilter.PLAIN_TEXT_FORMAT更改为TextFilter.TEXT_LAYOUT_FORMAT。