flash on 2010-1-24

by Makoto_Tanaka
♥0 | Line 11 | Modified 2010-01-24 23:35:40 | MIT License
play

ActionScript3 source code

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

package {
	import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            
        		var text:TextField = new TextField();
        		text.text = "Hello World.";
        		this.addChild(text);
        }
    }
}