
Код:
var txt:TextField = this.createTextField ("txt", 0, (Stage.width - 200) / 2, (Stage.height - 200) / 2, 200, 200);
txt.multiline = true;
txt.border = true;
txt.type = "input";
txt.onSetFocus = function () {
this.borderColor = 0xFF0000;
};
txt.onKillFocus = function () {
this.borderColor = 0x000000;
};