Consider the following mx:TextArea ..
<mx:TextArea id="textArea"/>
.. periodically being updated with new lines of text using ..
textArea.text += newLineBeingAdded + "\n";
.. how do I make sure the textarea is scrolled down to the bottom so that the last line added is visible to the user?