简体   繁体   English

如何在WinHotkey中将Win + Shift + Alt用作热键?

[英]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 . 我想使用组合键⊞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 : 要将WinShift4组合用作Hotkey

#+4::
    ; Your script here

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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