The problem:
Your XML file is fine, it validates as XML. The file encoding and the xml declaration encoding match. You can parse the XML, but when you try and put html inside a CDATA element, and then populate a dynamic textbox with it, either your formatting doesn’t work (the text still has <b> tags in) or it returns ‘undefined’.
The solution:
This could actually be a twofold problem, and is not helped along by Flash’s quirks. Its most likely that you’re either;
- Accessing the XMLNode incorrectly,
Or
- Being tripped up by the Flash players’ slightly dodgy XML parsing.
Accessing CDATA correctly
Now, the way that you should be accessing Read More…
