flash on 2013-11-18

by webpqw
♥0 | Line 11 | Modified 2013-11-18 17:06:19 | MIT License
play

ActionScript3 source code

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

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