如何使用 Autohotkey 将两个键组合为一个热键?

如何使用 Autohotkey 将两个键组合为一个热键?

我想将左 Windows 键与 Printscreen 结合起来,用于鼠标 xbutton2。

我无法获得比 Xbutton2::Lwin 更好的结果

非常感谢 !

答案1

对于映射到 XButton2:

Lwin & PrintScreen::MouseClick , XButton2

对于从 XButton2 映射:

XButton2::Send, {LWin down}PrintScreen{LWin up}

AutoHotkey 参考:

相关内容