Vissual effect with vscrollbar

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

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

Vissual effect with vscrollbar

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

is there any option to use vissual effect (dissolve) with this code.

set the Vscrollbar of group "Scroll_group" to FALSE

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

Re: Vissual effect with vscrollbar

Post by dunbarx » Thu Oct 01, 2015 6:01 am

Hi,

Make a button. Put this in its script:

Code: Select all

on mouseUp
   lock screen for visual effect
   if the vscrollbar of grp "Scroll_group" = "true" then set the vscrollbar of grp "Scroll_group" to "false"
   else set the vscrollbar of grp "Scroll_group" to "true"
   unlock screen with visual effect dissolve slow
end mouseUp
Click the button a few times.

Craig Newman

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

Re: Vissual effect with vscrollbar

Post by samjith » Mon Oct 05, 2015 1:01 pm

thanks for the reply. Its works :D

Post Reply