Scroll bar inside stack

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
samjith
Posts: 85
Joined: Tue Mar 31, 2015 10:09 am

Scroll bar inside stack

Post by samjith » Tue Sep 22, 2015 2:13 pm

I have a stack with lot of groups. (build by script)

groups are shown like lists. if we click on that, it will expand and show some text and buttons. The remaing group will adjust to down.

I need to place a scrollfield. because, if i open all groups, it is out of range of the card. :D

Thanks
Sam

dunbarx
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10331
Joined: Wed May 06, 2009 2:28 pm

Re: Scroll bar inside stack

Post by dunbarx » Tue Sep 22, 2015 2:18 pm

Hi.

Scrollbars are properties of groups (and fields) and you simply need to set that property:

Code: Select all

set the vScrollBar of group "yourGroup" to "true"
Craig Newman

samjith
Posts: 85
Joined: Tue Mar 31, 2015 10:09 am

Re: Scroll bar inside stack

Post by samjith » Thu Oct 01, 2015 5:38 am

Thanks Craig Newman

Post Reply