Textarea jump to

BlitzMax Forums/MaxGUI Module/Textarea jump to

TAS(Posted 2013) [#1]
Is it possible to scroll a textarea via code rather than user action?


jsp(Posted 2013) [#2]
Yes that works using SelectTextAreaText.

For example:

SelectTextAreaText( YourTextArea:TGadget,(TextAreaText(YourTextArea).length),0 )

would jump to the end of the TextArea.


TAS(Posted 2013) [#3]
Thanks