Table Field Scroll to Bottom???

Anything beyond the basics in using the LiveCode language. Share your handlers, functions and magic here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
no1g8tor96
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 46
Joined: Fri Aug 02, 2013 12:14 am

Table Field Scroll to Bottom???

Post by no1g8tor96 » Fri May 28, 2021 3:36 pm

have been looking....maybe not hard enough....lol.

When a field with a vertical scroll bar populates to the bottom it does not automatically scroll up? The text just dissapears and you have to
manually click the scroll bar and keep scrolling after every line. Where is the setting to fix this to keep scrolling up and show the new data
as it appears?

Thanks so much in advance for this information.

Klaus
Posts: 13793
Joined: Sat Apr 08, 2006 8:41 am
Location: Germany
Contact:

Re: Table Field Scroll to Bottom???

Post by Klaus » Fri May 28, 2021 4:54 pm

Hi no1g8tor96
When a field with a vertical scroll bar populates to the bottom it does not automatically scroll up?
no, it doesn't. How are you population the field, via script?
The text just dissapears and you have to manually click the scroll bar and keep scrolling after every line.
Yes.
Where is the setting to fix this to keep scrolling up and show the new data as it appears?
No setting for this, DIY (do it yourself) in LC! :-D
After population the field just set hte scroll of that field to an incredible high number and that does the trick. :D

Code: Select all

...
put CR & YourTabularData after field "tabula"
set the scroll of fld "tabula" to 1000000
...
Best

Klaus

no1g8tor96
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 46
Joined: Fri Aug 02, 2013 12:14 am

Re: Table Field Scroll to Bottom???

Post by no1g8tor96 » Tue Jun 01, 2021 5:54 pm

Thank you so much. Works Perfect.

Post Reply

Return to “Talking LiveCode”