xml file and htmlText box doesn't work
Hi,
i have a action script that read a xml file and put the content of this file in a
htmltext box, but when come inside the xml file a code like this"<font color='#003399'>Test</font>" the box (htmltext) appears empty.
my code
this.my_txt.embedFonts = true;
this.my_txt.html = true;
this.my_txt.htmlText =myTextos;
The variable "myTextos" load the content from xml ...but it doesn't appears in my htmltext box
How can i fix this?
obs: When i erase the tag <font color='#003399'></font> in xml the variable "myTextos" appears correctly in my htmltext box.