Xml headache

Please let there be someone out there that can help me … I’m trying to set up a html formatted xml document that is called into flash. I’ll give you my code so you can see what I have done. Each slide represents a different content page - each will be called from a corresponding swf movie.

[size=1][color=#008080]<?xml version=“1.0” encoding=“UTF-8”?>
[/color][/size][size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]slides[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]slide[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]title[/color][/size][size=1][color=#0000ff]>[/color][/size][size=1]Introduction [/size][size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]title[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]content[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<![CDATA[[/color][/size][size=1]<b>BOLD</b>[/size][size=1][color=#0000ff]]]>[/color][/size][size=1]content page 1[/size]
[size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]content[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]slide[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]
[/color][/size][size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]slide[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]title[/color][/size][size=1][color=#0000ff]>[/color][/size][size=1]Introduction 2[/size][size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]title[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]<[/color][/size][size=1][color=#800000]content[/color][/size][size=1][color=#0000ff]>[/color][/size][size=1]content page 2[/size]
[size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]content[/color][/size][size=1][color=#0000ff]>[/color][/size]
[size=1][color=#0000ff]</[/color][/size][size=1][color=#800000]slide[/color][/size][size=1][color=#0000ff]>
</[size=1][color=#800000]slides[/color][/size][size=1][color=#0000ff]>[/color][/size][/color][/size]

Here’s whats on the first frame of the flash movie (content page 1)

[size=1]function loadXML(loaded) {
if (loaded) {
_root.title = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.content = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
title_txt.text = _root.title;
content_txt.text = _root.content;
} else {
trace(“file not loaded!”);
}
}
var xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = parseIt;
xmlData.onLoad = loadXML;
xmlData.load(“module1.xml”); [/size]
[size=1]xmlDoc.onLoad = function(success){
if(success) parseIt(this);
else trace(“XML Document failed to load properly”);
};[/size]
[size=1]parseIt = functions(doc);{
_root.content_txt.html = true;
_root.content_txt.htmlText = xmlData;
//here’s where you parse out your XML document.
};
[/size]
The content is loading into the flash movie, but I can’t figure out how to get words bold … I tried some CDATA as you can see but all that displays in the flash movie is <b>BOLD</b> and the rest of the content after it is just gone …I need to be able to place the html text straight into the xml file and have it display the formatted text in the flash movie … no clue how to achieve this … I’m using Flash MX

Please help me and thanks![size=1][color=#0000ff][size=1][color=#0000ff]
[/color][/size][/color][/size]