flash on 2009-6-12

by hacker_cif_rxsb
♥0 | Line 11 | Modified 2009-06-12 19:40:13 | MIT License
play

ActionScript3 source code

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

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