Re: lingo-l Best QTVR Authoring software

2005-08-15 Thread Ross Clutterbuck
Teo: I use VR Worx and have recently upgraded to the latest version and I've never had a problem. Its interface is clean and easy to use plus the new version features much improved pano stitching algorithms, Cubic VRs loads of optimisations and I think it works on OSX now too. Plus the full

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 Re: Lingo-l Digest, Vol 10, Issue 11

2005-08-15 Thread Ronald Kozlowski
The BioMediaLab is closed Aug 12 - 22. We will respond to your email when we reopen. Thanks [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email lingo-l@penworks.com (Problems, email [EMAIL

lingo-l no keyDown when commandDown? - MacOSX

2005-08-15 Thread bruce
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 property. Bruce - Date: Mon, 15 Aug 2005

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