I am trying to use html elements to style text inside an XML file that is loaded and displayed by flash. When I do this the text will not display at all. Here is a chunck of my XML :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Page>
<Title>You should be <b>Bold</b> ! </Title>
<Page>
When I try the code below, it displays but ignores the b tags:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Page>
<Title>You should be <b>Bold</b> ! </Title>
<Page>
Here is the actionscript that sets the dynamic text field:
Container.Title.htmlText = xmlData.Title[0];
From what I can tell, this should be entirely doable. Tutorials and reference online gives no hist to the problem. Seems simple but its driving me nuts. Any help would be greatly appreciated.