Text field forces bullet formatting?!

I’m loading html text chunks from an xml document and displaying them in an HTML formatted input text field based on the user selecting an item in a list box.

See the fla & xml files at http://www.brianwpiper.com/bulletSticks.zip
and you can see the swf at http://www.brianwpiper.com/bulletSticks.html

…the third chunk has bullets, so if you select Chunk 1 or 2 you’ll see they don’t start with bullets, click Chunk 3 and then click back on Chunk 1 or 2 and you’ll see they now have bullets?!

If you select a chunk that has bulleted text in the first paragraph and then select another chunk, it forces the bullets onto that chunk, even though there are no bullets defined in the xml?!

Is there a way I can fix this??

It only happens when the chunk begins with a bullet. You’ll see Chunk 2 has bullets within the text, but it doesn’t force the formatting.

I even tried adding a Reset button which clears the field & sets the html & bullets to false, but that didn’t keep the bullets away…

I even tried:

var my_fmt:TextFormat = new TextFormat();
my_fmt.bullet = false;
inTxt.setTextFormat(my_fmt);

inTxt.htmlText = "";
inTxt.html = false;

on the reset button, but no luck there either…

Thanks!!!