lingo-l no keyDown when commandDown? - MacOSX

2005-08-15 Thread Cole Tierney
Hi, I've got an MX 2004 (10.1) projector that will not register keyDown events while the command key is pressed. This is unfortunate, since I've set exitLock = TRUE and would like to detect command - Q for quit on the mac. I've seen this behavior in earlier versions of director for mac when

lingo-l no keyDown when commandDown? - MacOSX

2005-08-15 Thread bruce
10:21:05 -0400 From: Cole Tierney [EMAIL PROTECTED] Subject: lingo-l no keyDown when commandDown? - MacOSX Hi, I've got an MX 2004 (10.1) projector that will not register keyDown events while the command key is pressed. This is unfortunate, since I've set exitLock = TRUE and would like to detect

Re: lingo-l no keyDown when commandDown? - MacOSX

2005-08-15 Thread Cole Tierney
At 12:36 PM -0400 8/15/05, [EMAIL PROTECTED] wrote: The modifier keys don't generate keyDown events themselves. Otherwise, you'd get two events when the user presses Command and Q. Just wait until the Q key is pressed, and then test for the presence of the command key using the commandDown

Re: lingo-l no keyDown when commandDown? - MacOSX

2005-08-15 Thread Cole Tierney
At 2:24 PM -0400 8/15/05, Cole Tierney wrote: The keydown doesn't fire while the command key is pressed, at least it doesn't for me. Just try in a frame script: on keyDown if the commandDown then beep end if end To hear the beep you need to remove the commandDown check. A clearer