How can I create an Alt + Space + C shortcut in autohotkey? Alt + Space is !space but I don’t see how I can add a third key without getting an error.
How can I create an Alt + Space + C shortcut in autohotkey? Alt
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
#Ifdirective (requires AHK_L) in combination with theGetKeyState()function:or you can use the
Keywaitcommand:This will also trigger an Alt+space outcome after 0.6 seconds if you don’t press C.
If that is undesirable you can write it like this:
!ErrorLevelmeans “not ErrorLevel”