Hi
I need to be center htmlText loaded from XML into an autosize textfield.
I’ve already tried to edit format, autosize center, but it stay at left.
Here is my code, can you help ?
var myFont2:Font = new Font2();
textFormat2.font = myFont2.fontName;
textFormat2.size = 13;
textFormat2.color = 0xffffff;
var picInfo:TextField = new TextField();
picInfo.autoSize = TextFieldAutoSize.CENTER;
picInfo.antiAliasType = AntiAliasType.ADVANCED;
picInfo.defaultTextFormat = textFormat2;
picInfo.embedFonts = true;
picInfo.htmlText=myXML.TEXT*.toString();
Thank you!!