flash on 2010-4-20

by tommysalo
♥0 | Line 11 | Modified 2010-04-20 22:16:22 | MIT License
play

ActionScript3 source code

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

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();
            tf.text = "test";
            addChild(tf);
        }
    }
}