I\'m trying to move the caret in a Flex TextArea to the end after appending some text from my code. I\'ve looked through the reference documentation for TextArea and its und
Try this
textArea.selectionBeginIndex = textArea.length; textArea.selectionEndIndex = textArea.length;