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
Simply add the following code after adding a text to the TextArea:
textArea.verticalScrollPosition = textArea.maxVerticalScrollPosition;