简体   繁体   中英

How can I use Win+Shift+Alt as a hotkey in AutoHotkey?

I want to activate a script with the key combination ⊞ Win + Shift + Alt . How would I do that?

This is what I have so far:

Space::
    Run, App

#Persistent
SetTimer, PressTheKey1, 500
SetTimer, PressTheKey2, 0

PressTheKey1:
    Send, {click}
Return

PressTheKey2:
    Send, {t}
Return

Escape::
    ExitApp
Return

To use the Win , Shift , and 4 combo as a Hotkey :

#+4::
    ; Your script here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM