ну что то вроде этого:

Код:
this.createTextField("test", this.getNextHighestDepth(), 10, 10, 200, 30);
this['test'].border = true;
this['test'].type = "input";
this['test'].onSetFocus = function():Void {
this._parent.onEnterFrame = function():Void {
Selection.setFocus("test");
Selection.setSelection(0, this['test'].text.length);
delete this.onEnterFrame;
}
}