Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Richard Gaskin
Mark Wieder wrote: Saturday, February 2, 2013, 4:22:50 PM, Richard wrote: Wouldn't each of those be available to us (perhaps under a different identifier) from rawKeyDown and/or the modifier key messages? No, the rawKeyDown codes are different from the hardware scan codes. Yes, that's what

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Mark Wieder
Richard- Saturday, February 2, 2013, 4:22:50 PM, you wrote: > Wouldn't each of those be available to us (perhaps under a different > identifier) from rawKeyDown and/or the modifier key messages? No, the rawKeyDown codes are different from the hardware scan codes. -- -Mark Wieder mwie...@ahsof

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Richard Gaskin
Mark Wieder wrote: But the 1K question is how to detect them in LC I don't that that's going to be possible. Those look like keyboard scan codes, and that's at the hardware level, below the OS. I think you're gonna have to get down and dirty writing your own keyboard scan driver if you want

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Björnke von Gierke
mousewheel click is mouse(3) On 03.02.2013, at 00:30, Colin Holgate wrote: > So it seems. 65308 and 65309. > > > On Feb 2, 2013, at 6:17 PM, Scott Rossi wrote: > >> A mousewheel click may not be detectable, but scrolling most certainly is. > > ___

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Mark Wieder
Thomas- Saturday, February 2, 2013, 3:41:28 PM, you wrote: > I also found this list for Mac Keyboards: > ESC: 53 F1: 122 F2: 120 F3: 99 F4: 118 F5: 96 F6: 97 F7: 198 > F8: 100 F9: 101 F10: 109F11: 103F12: 111 > `: 50 1: 18 2: 19 3: 20 4: 21 5: 23 6: 22 7

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Thomas McGrath III
I also found this list for Mac Keyboards: ESC: 53 F1: 122 F2: 120 F3: 99 F4: 118 F5: 96 F6: 97 F7: 198 F8: 100 F9: 101 F10: 109F11: 103F12: 111 `: 50 1: 18 2: 19 3: 20 4: 21 5: 23 6: 22 7: 26 8: 28 9: 25 0: 29 -: 27 =: 24 delete: 51 TAB: 48 q

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Colin Holgate
So it seems. 65308 and 65309. On Feb 2, 2013, at 6:17 PM, Scott Rossi wrote: > A mousewheel click may not be detectable, but scrolling most certainly is. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Scott Rossi
A mousewheel click may not be detectable, but scrolling most certainly is. Regards, Scott Rossi Creative Director Tactile Media, UX Design On 2/2/13 2:35 PM, "Colin Holgate" wrote: >Mouse wheels do not send a rawKeyDownmessage on Mac OS systems. __

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Thomas McGrath III
fKeys, UControl, have been able to distinguish between left and right shift keys. They are non functioning in OSX so I am still researching if it is at all possible. I did find KeyRemap4MacBook and am trying to figure out how it works or if it knows the difference. -- Tom McGrath III http://l

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Colin Holgate
Try this: on idle put the keysdown end idle That will show you that you are pressing the shift key, but it is the same value for both of them ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscri

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Thomas McGrath III
I was aware of the need for another key to be pressed with certain modifier keys in order for LC to register the event and then I can check if the modifier is held down but that won't tell me if it is the left or right key. I am starting to get the feeling that not being able to tell if it is le

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Colin Holgate
It also doesn't send the event if just the shift key is held down: Cross-platform note: On Mac OS systems, no message is sent when a modifier key (Shift, Option, Control, or Command) is pressed, unless another key is pressed along with the modifier key. Mouse wheels do not send a rawKeyDownmessa

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Mark Wieder
Jacque- Saturday, February 2, 2013, 2:27:12 PM, you wrote: > I don't think Mac OS distinguishes. H. OK. I can't test right at the moment, but I coulda sworn it made a difference. -- -Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread J. Landman Gay
On 2/2/13 4:18 PM, Mark Wieder wrote: Tom- Saturday, February 2, 2013, 1:55:41 PM, you wrote: Does anyone know if there is a way within LiveCode to determine if the Left or Right Shift Key is pressed? or if there is a distinction between the left and right modifier keys - Control Left, Control

Re: Left and Right Shift Keys or Modifier Keys

2013-02-02 Thread Mark Wieder
Tom- Saturday, February 2, 2013, 1:55:41 PM, you wrote: > Does anyone know if there is a way within LiveCode to determine > if the Left or Right Shift Key is pressed? or if there is a > distinction between the left and right modifier keys - Control Left, > Control Right, Alt Left, Alt Right, Comm