flash on 2011-10-8

by points
♥0 | Line 11 | Modified 2011-10-08 20:57:57 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
	import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var tf:TextField = new TextField();
			addChild(tf);
			tf.text = "hello";
        }
    }
}