Page 1 of 1

Scrollbar / Slider - On Bar Click ?

Posted: Tue Jan 05, 2010 5:47 pm
by andrew99
Wondering if anyone can help me - I need to change the 'On Bar Click' increment from 1 to 0.5 and the basic properties for the slider / scrollbar won't allow it. Any ideas?

Andrew

Re: Scrollbar / Slider - On Bar Click ?

Posted: Tue Jan 05, 2010 9:27 pm
by bn
Andrew,

Code: Select all

on mouseUp
   set the pageinc of scrollbar 1 to .5
end mouseUp
you might want to set the numberformat or Value Format to .0

Code: Select all

set the numberformat of scrollbar 1 to .0
regards
Bernd

Re: Scrollbar / Slider - On Bar Click ?

Posted: Fri Jan 08, 2010 5:56 pm
by andrew99
Thank you