попробуй xml с cdata:
data.xml:

Код:
<?xml version='1.0'?>
<root>
<text>
<![CDATA[
<b> test text </b>
]]>
</text>
</root>
flash:

Код:
System.useCodepage = true;
var doc:XML = new XML();
doc.ignoreWhite = true;
doc.load('data.xml');
doc.onLoad = function(success:Boolean)
{
if (success)
{
show_text(doc.firstChild.childNodes[0].childNodes[0].nodeValue);
}
}
function show_text(txt:String):Void
{
_root['my_tf'].html = true;
_root['my_tf'].htmlText = txt;
}