var exampleTextField:TextField = new TextField();
exampleTextField.text = "your text goes here";
exampleTextField.width = 200;
addChild(exampleTextField);
exampleTextField.autoSize = TextFieldAutoSize.LEFT;
var format:TextFormat = new TextFormat();
format.color = 0x990000;
format.size = 20;
exampleTextField.setTextFormat(format);
No comments:
Post a Comment