flash on 2010-11-23

by y_tama
♥0 | Line 11 | Modified 2010-12-16 07:35:57 | MIT License
play

ActionScript3 source code

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

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