lingo-l modifier keys

2002-02-20 Thread Craig Taylor
Hello everyone, i'm working on a program where there are about 15 shortcut keys available to the user - all are a combination of the Ctrl key + an alphanumeric key. Currently I have placed a similar piece of code in the movie script: on keyDown controlKeyDown = the controlDown if

Re: lingo-l modifier keys

2002-02-20 Thread Irv Kalb
Try this structure: on keyDown if the controlDown then case the key of a: -- do something for a b: -- do something for b ... etc. end case end if end Feel free to put the controlDown and/or the key into local variables at the top if you

Re: lingo-l modifier keys

2002-02-20 Thread rani op
Hai.. I hope this will be helpful to you to solve your problem. write the script in this way... if the ControlDown then case (the key) of a: statement b: statement . . . end case end if Rani On Thu, 21 Feb 2002 Craig Taylor wrote : Hello everyone, i'm

Re: lingo-l modifier keys

2002-02-20 Thread rani op
Hai.. I hope this will be helpful to you to solve your problem. write the script in this way... if the ControlDown then case (the key) of a: statement b: statement . . . end case end if Rani On Thu, 21 Feb 2002 Craig Taylor wrote : Hello everyone, i'm