如何在 AutoHotkey 中使用 Win+Shift+Alt 作为热键?

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

我想使用组合键 ⊞ Win+Shift+Alt[=18= 激活脚本].我该怎么做?

这是我目前拥有的:

Space::
    Run, App

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

PressTheKey1:
    Send, {click}
Return

PressTheKey2:
    Send, {t}
Return

Escape::
    ExitApp
Return

要将 WinShift4 组合用作 Hotkey:

#+4::
    ; Your script here