Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
<badXML>
    <myText>blah blah <a href="blah.com">link</a></myText>
</badXML>

<!--
the above wont work cuz it will just thing the <a> tag is a new xml node

below works because CDATA tells it that that not a new xml node, just text data (that flash will recognize is html)
-->

<goodXML>
    <myText><![CDATA[blah blah <a href="blah.com">link</a>]]></myText>
</goodXML>