In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

HelloWorld

Get Adobe Flash player
by mash 05 Feb 2009

    Talk

    ActionSal at 04 Aug 2013 14:04
    Thanks, that was useful! :)

    Tags

    Embed
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 );
        }
    }
}