Не понимаю. У меня it works like clockwork!

Код AS3:
package {
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldType;
public class Main extends Sprite {
private var _textField:TextField;
public function Main() {
_textField = new TextField();
_textField.x = _textField.y = 150;
_textField.type = TextFieldType.INPUT;
_textField.border = true;
addChild(_textField);
stage.focus = _textField;
}
}
}