Please help with my Text draw error

Hey all,

I have a bunch of text that I have drawn onto the screen via the draw function. I have the format of that text set via textFormat:


var myFormat:TextFormat = new TextFormat();
myFormat.size = 21;
myFormat.font = "Arial";
mTextField.setTextFormat(myFormat);

Now, the first time that this text draws itself, it works fine. But, when I try to update the htmltext in the textfield, it draws itself in a format that isn’t the one I set.

I’m certain that the textformat isn’t changed by anything.

I’m wondering if flash draws text in the last textFormat that is created, not as the textfield is set.

Can anyone confirm this? Or, could you provide any input?