UITextField не может иметь анимации, такие как перемещение. Который внутренне вызывает transformX, transformY. Может иметь анимацию эффекта лица.
Решение
Добавьте экземпляр UITextField к UIComponent и примените эффект перемещения к UIComponent.
Пример
var aminolabel:UITextField;
var aminoLabelUI:UIComponent;
aminoLabelUI.addChild(aminolabel);
var aminoLabelMove:Move = new Move(aminoLabelUI);
aminoLabelMove.xFrom = 0;
aminoLabelMove.xTo = 100
aminoLabelMove.duration = 1300;
aminoLabelMove.play();