
Код:
function makeTF(){
this.createTextField("tf",1,100,100,150,24);
tf.type = "input";
tf.variable = "txt";
tf.border = true;
tf.background = true;
tf.backgroundColor = (0xFFFFE0);
kform = new TextFormat;
kform.font = "Arial";
kform.size = 18;
tf.setTextFormat(kform)
Selection.setFocus("txt");
}
btn.onRelease = function(){
makeTF();
txt="";
}