flash on 2010-12-11

by UKI0809
♥0 | Line 11 | Modified 2010-12-11 19:28:25 | MIT License
play

ActionScript3 source code

/**
 * Copyright UKI0809 ( http://wonderfl.net/user/UKI0809 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/wokz
 */

package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class HelloWorld extends Sprite {
        public function HelloWorld() {
            var tf :TextField = new TextField;
            tf.text = "AHAHA!!";
            addChild( tf );
        }
    }
}