flash on 2009-11-17

by takuya1021
♥0 | Line 11 | Modified 2009-11-17 21:58:49 | MIT License
play

ActionScript3 source code

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

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