我想用組合鍵激活腳本⊞贏 + Shift + Alt。我會怎麼做?如何使用Win + Shift + Alt作爲AutoHotkey中的熱鍵?
這是我到目前爲止有:
Space::
Run, App
#Persistent
SetTimer, PressTheKey1, 500
SetTimer, PressTheKey2, 0
PressTheKey1:
Send, {click}
Return
PressTheKey2:
Send, {t}
Return
Escape::
ExitApp
Return
我不認爲它可能只使用單獨的Win,Shift和Alt鍵來觸發腳本。 Win,Shift和Alt都被認爲是「修飾符」,這意味着它們需要與「熱鍵」配對才能生效。 「熱鍵」的一些例子是:鍵盤上的常規字母鍵,數字鍵盤上的數字,F1到F12鍵,輸入,空格 –
好吧,如果我想贏得移位-4,代碼是什麼? – Martin