Page 1 of 1

Vissual effect with vscrollbar

Posted: Thu Oct 01, 2015 5:37 am
by samjith
is there any option to use vissual effect (dissolve) with this code.

set the Vscrollbar of group "Scroll_group" to FALSE

Re: Vissual effect with vscrollbar

Posted: Thu Oct 01, 2015 6:01 am
by dunbarx
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

Re: Vissual effect with vscrollbar

Posted: Mon Oct 05, 2015 1:01 pm
by samjith
thanks for the reply. Its works :D