flash on 2009-8-18

by hacker_9p8x8mco
♥0 | Line 15 | Modified 2009-08-18 23:20:07 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.*;
    import flash.text.*;
    public class first extends Sprite{
        public function first(){
            var tf1:TextField = new TextField();
            tf1.text = "�͂��߂Ă�ActionScript3.0�v���O���~���O";
            tf1.width = 300;    //�\���e�L�X�g����
            tf1.height = 200;   //�\���e�L�X�g�c��
            tf1.x = 50;         //�\���e�L�X�g���ʒu
            tf1.y = 20;         //�\���e�L�X�g�c�ʒu
            addChild(tf1);      //�lj�
        }
    }
}