Uploading text html

Hi All!

I’ve made a rollover button that loads a specific text following kirupa’s tutorial
http://www.kirupa.com/developer/mx/multiple_dynamictext.htm

The problem seems to be that if I make html tags on the text files, it will not read them. I have the <> selected on my properties for the text box in which the text files are uploading to. Here’s the code that I am using on this:

panel.b1a.onRollOver = function() {
loadText = new LoadVars();
loadText.load(“text1.txt”);
loadText.onLoad = function(success) {
if (success) ;
//trace (success);
newsBox.html = true;
newsBox.htmlText = this.myNews;

    }
};

And here’s the swf:

http://www.dmusseb.com/world.swf

If you roll over the world, and the “p’s” on it, there should be the word “second” and it should be embolded. But it’s not even appearing there. It’s not reading the html at all… Any insight into why is it doing this or any suggestions or advice?

Thank you in advance!

deelly