скорее из области лирического эпоса :))

Код:
txt = "Jackdaws love my big sphinx of quartz..";
//
this.createTextField("TF", 1, 0, 0, 0, 0);
TF.border = TF.autoSize=true;
TF.borderColor = 0xFF6600;
TF.type = "input";
TF.textColor = 0xff6600;
TF.variable = "txt";
TF.defaultText = txt;
TF.onChanged = function() {
var cursor = Selection.getCaretIndex()-1;
cursor *= (cursor>=0);
this.text = this.defaultText;
Selection.setFocus(this);
Selection.setSelection(cursor, cursor);
};