This content has been marked as final.
Show 3 replies
-
1. Re: control key
even-1 Dec 26, 2011 4:47 PM (in response to tyree_2)example: ctrl + a
if the controldown and keypressed(0) then
beep
end if
-
2. Re: control key
RemusM Jan 9, 2012 3:59 AM (in response to tyree_2)if (_key.commandDown and _key.key = "a") then
-- ...
end if
cheers
-
3. Re: control key
tyree_2 Jan 12, 2012 12:06 PM (in response to RemusM)thanks for both replies, I ended up getting it to work right after posting.

