PDA

View Full Version : [AS3] How do you get a text area to autoscroll?


ambergahill
03-11-2009, 12:01 PM
I have a text area that is being used as a chat window. There are multiple people in a room, and when they send a chat message, it goes to the text area. How do I get the text area to automatically scroll? The scroll bar automatically pops up, but you have to manually scroll it. Thanks! :cool:

ambergahill
03-23-2009, 12:07 PM
:(

Yui
03-24-2009, 02:29 PM
yourTextArea.validateNow();
yourTextArea.verticalScrollPosition = yourTextArea.maxVerticalScrollPosition;