If <b> is first in a string, corrupts the TLFTextField
Condition:
Create a string with the <b> tag appearing at the beginning, eg.
str = "<b>Bold</b> is the first thing in this string";
Create a TLFTextField on the stage (manually from within flash) and then assign the string to its htmlText property, eg.
myTLFTextField.htmlText = str;
Result:
Everything looks fine - but now try and assign a different string to the same TLFTextField. The entire text is fixed to being bold, no matter what html tags are present or not.
The same thing happens for the <i> tag as well.
The only work around I have is to always insert a space at the start of the string. If any <b> or <i> tag appears at the start of the string, that text field is corrupt for the entire session and can't be fixed.
