hey,
its me again.
I am just wondering, if the htmlText property is the right solution for me as I am parsing information from a XML file.
Code:
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 160,
22);
my_txt.html = true;
my_txt.htmlText = "<b> this is bold text </b>";
It will trace This is bold text.
But I have a path trough my XML document, similar to "this.firstChild.childNode[0].firstChild.childNode[5].nodeValue" and when I write this between <b> </> it will trace me exactly this.firstChild.childNode[0].firstChild.childNode[5].nodeValue 
What can I do (to decorate this text, the value, the node)
Does it make sense?
Thanks a lot