TechHUB:Flash1:00:HelloWorld

by yprops
♥0 | Line 13 | Modified 2011-03-26 16:21:31 | MIT License
play

ActionScript3 source code

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

/*
※・・・丸覚えしとくところ
*/

//パッケージ宣言※
package {
    
    //クラスのインポート
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    
    //このクラス※
    public class FlashTest extends Sprite {
        
        //変数宣言
        private var myText :TextField;
        
        //このクラスのコンストラクタ※
        public function FlashTest() {
            
            //本文ここから--------------------------
            
            myText = new TextField();
            myText.text = "Hello World!! やあ世界!!";
            addChild(myText);
            
            /*
            myText.x = 100;
            myText.y = 100;
            myText.autoSize = TextFieldAutoSize.LEFT;
            */
            
            //本文ここまで--------------------------
            
        }
    }
}