TextArea scollbars

BlitzMax Forums/MaxGUI Module/TextArea scollbars

Nigel Brown(Posted 2007) [#1]
Is there a way of telling the scrollbar on a TextArea that it should be at the start not the end?

When you add text beyond the displayable view it adds a scrollbar (great). But then it sets the scrollbar to diaplay text at the end of the TextArea not the start.


Grisu(Posted 2007) [#2]
Have you tried to call:
SelectTextAreaText (Mytext:TGadget,0,0)?


Nigel Brown(Posted 2007) [#3]
Grisu, thank's seems to work.


Grisu(Posted 2007) [#4]
You're welcome!

Also make sure that you lock and unlock the textarea. This speeds up commands a lot.