Create the TextField
package{ import flash.display.Sprite; import flash.text.*; public class Main extends Sprite{ public function Main(){ var msg:TextField = new TextField( ); msg.text = "Hello"; msg.border = true; msg.background = true; msg.autoSize = TextFieldAutoSize.LEFT; container.addChild(msg); } } }