а у TextField нет события наведения(если я не ошибаусь), я попытался cделать так

Код:
this.createTextField("my_txt", 1, 100, 100, 100, 20);
with (my_txt) {
type = "input";
border = true;
mouseWheelEnabled = true;
condenseWhite = false;
restrict = null;
}
var listener:Object = new Object();
my_txt.addListener(listner);
listner.onSetFocus = function() {
trace("rollover");
}
listner.onRollOut = function() {
trace("rollout");
}
но не работает? может я чего не пойму? можно ли так вообще?