views:

1852

answers:

1

How to set the caret position, there is only

this.caretIndex (READ)

+3  A: 

use setSelection(beginIndex:int, endIndex:int):void

eg

this.textField.setSelection(20, 20)
James Hay