Re: Can't use double finger scroll on mac for grouped controls

2017-08-02 Thread Kaveh Bazargan via use-livecode
Genius. Thank you :-) On 2 August 2017 at 01:35, Monte Goulding via use-livecode < use-livecode@lists.runrev.com> wrote: > This is something you need to script for groups. Something like this: > > on rawKeyDown pKeyCode >if pKeyCode is 65308 then > get the scroll of me > add 10 to

Re: Can't use double finger scroll on mac for grouped controls

2017-08-01 Thread Monte Goulding via use-livecode
This is something you need to script for groups. Something like this: on rawKeyDown pKeyCode if pKeyCode is 65308 then get the scroll of me add 10 to it set the scroll of me to it else if pKeyCode is 65309 then get the scroll of me subtract 10 from it set