forked from: TextField_INPUT
/**
* Copyright hacker_u_yjm2r7 ( http://wonderfl.net/user/hacker_u_yjm2r7 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/gwFE
*/
// forked from oshige's TextField_INPUT
package {
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;
public class MyTextField extends Sprite {
public function MyTextField(){
//テキストの書式
var tf:TextFormat = new TextFormat();
tf.font = "_typewriter";
tf.size = 18;
//テキスト入力フィールドの作成
var fld:TextField = new TextField();
fld.type = TextFieldType.INPUT
fld.defaultTextFormat = tf;
fld.x = 100;
fld.y = 50;
fld.width = 300;
fld.height = 24;
fld.border = true;
addChild(fld);
}
}
}