Html – Flash HTML text not showing

actionscriptembedfontshtml

I'm trying to display HTML text in a text field on the stage, but the text formatting doesn't show.
I am embedding all font variations in the library (arial bold and arial regular) and I even have dynamic text fields on the stage that embed arial bold and arial regular.

Still, this code does not display bold text:

myField.htmlText = "Regular and <b>bold</b>";

What am I missing?

Best Answer

If you're using AS2, you have to specify: myField.html=true in order to allow HTML.