flash on 2009-7-31

by temita
♥0 | Line 11 | Modified 2009-07-31 13:06:47 | MIT License
play

ActionScript3 source code

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

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

}