Hello,
I have an htmlTextField that I am loading html text from a xml doc. the problem is that the text is not rendering as html. so all my HTML is displayed in the textField.
here is the XML:
<description><![CDATA[<b>Recipe</b> for a tremendously ... ]]></description>
here is the AS:
myDescription.htmlText = pageDescription[m];
but if i do this:
myDescription.htmlText = "<b>Recipe</b> for a tremendously ... ";
the html displays correct. so I know that the textField is setup to display the html. when I trace pageDescription I get:
<b>Recipe</b> for a tremendously ...
I’m not sure how to fix this. Can anyone help me? thanks.