forked from: こんにちわ 世界

by hacker_johiroshi
♥0 | Line 16 | Modified 2010-05-11 09:51:54 | MIT License
play

ActionScript3 source code

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

// forked from jl7kii's こんにちわ 世界
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var textField:TextField = new TextField();
            textField.text = "こんにちわ? 世界";
            stage.addChild(textField);
            
        }
        public function FlashTest01() {
            // write as3 code here..
            var textField01:TextField = new TextField();
            textField01.text = "ハロー? 世界";
            stage.addChild(textField01);
            
        }
    }
}