[FMX04] HELP for TextFormat and Input text fields

Can anyone help with this? I am trying to create a TextField, set its type property to “input,” set its format via the TextFormat object, and allow the user to add a label to a movieclip.

Assume you have a button named b_add, and you assign it this code on the main timeline:

 _root.b_add.onRelease = function () {[indent]_root.createTextField("myLabel", 10, -38, -15, 76, 29.7);

_root.myLabel.type = "input";
_root.myLabel.text = "insert label";
_root.myLabel.wordWrap = true; 
labelFormat = new TextFormat("Verdana", 10, 0x525252);
labelFormat.align = "center";
_root.myLabel.setTextFormat(labelFormat);
Selection.setFocus(_root.myLabel);

[/indent]}


[font=Courier New]
[/font][font=Courier New][font=Verdana]The TextField that gets created loses all of its formatting once the user starts typing. It reverts to Time New Roman and doesn’t wrap. Do I have something out of order? Should I approach the problem with another solution?[/font][/font]