package{ import flash.display.Sprite; import flash.text.*; public class TekstiKastiDemo extends Sprite{ private var tf:TextField=new TextField(); public function TekstiKastiDemo(){ tf.type=TextFieldType.INPUT; tf.background=true; addChild(tf); tf.x=150; tf.y=200; tf.height=30; } } }