How to NOT show "true" while loading xml

function loadXML(loaded) {
	if (loaded) {
		xmlNode = this.firstChild;
		Title = [];
		XMLSection = [];
		total = xmlNode.childNodes.length;
		for (i=0; i<total; i++) {
			Title* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
			XMLSection* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
		}
		
		showtitles();
	} else {
		trace( "file not loaded!");
	}
}

the function loadXML(loaded) is equal to true (which is good), but a sec before the text is displayed, it shows the word “true” in the text boxes. Doesn’t look nice. How do you make it so that “true” doesn’t display in the dynamic text boxes?

Don’t know what I’m talking about?http://www.presidentialprayerteam.net/prayerroom/
Go to Living Room
Click on bookshelf, then book2, then select chapter.
Click Menu
Repeat

I only saw it flash on screen for a second. These are “hack” work arounds but what if you change the text color to match the background or move it off stage? I don’t know if you are using the same text box for the part that says true and then loading the other text in ?
Hope that made sense.

I can’t do that, its the same text box shows the text.
Thanks anyways

You just need to figure out where “true” is being assigned from. That’s not a default behavior by any means.

bContent.htmlText = true;

This was the problem. I am not sure why this appears in the texbox while loading but it did. thanks