Hello,World! vinton forked:0favorite:0lines:11license : MIT License modified : 2012-04-22 18:50:41 Embed Tweet package { import flash.display.Sprite; import flash.text.TextField; public class HelloWorld extends Sprite { public function HelloWorld() { var tf :TextField = new TextField; tf.text = "Hello, world!"; addChild( tf ); } } } Code Fullscreen Preview Fullscreen TextField text addChild Sprite