On 11/4/2014, 11:14 AM, Dr. Hawkins wrote:
I've noticed that I can use the normal mac two-fingered scrolling in (at
least) the dictionary.

Is there a way to enable this for my own fields & groups?


I think it's the same keycodes as the scrollwheel on a mouse:

on rawKeyDown pKey
   switch pKey
      case 65309
         set the vScroll of me to the vScroll of me - 30
         break
      case 65308
         set the vScroll of me to the vScroll of me + 30
         break
      case 65311
         set the hScroll of me to the hScroll of me - 30
         break
      case 65310
         set the hScroll of me to the hScroll of me +30
         break
      default
         pass rawKeyDown
   end switch
end rawKeyDown

--
Jacqueline Landman Gay         |     jac...@hyperactivesw.com
HyperActive Software           |     http://www.hyperactivesw.com

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to