鼠标&用于鼠标单击的键盘按键组合键 - Autohotkey

时间:2015-07-23 17:25:58

标签: autohotkey

我想按下中键可以用AutoHot键模拟Shift +中键或左键+中键功能(两者都做同样的事情)。 这是用于在Sketchup软件中使用中间按钮进行平移。 我尝试了很多东西,但没有一个能为我工作。

例如我写道:

MButton :: 发送,{Shift& MButton down} keywait,MButton MButton Up :: 发送,{Shift& MButton Up} 返回

此功能必须像X-Mouse Button一样工作:在功能期间。当我按下按钮时,它必须同时按下其他键。并以同样的方式释放 那么,我该怎么办?

1 个答案:

答案 0 :(得分:0)

我做到了!

解决方案:

MButton ::发送{Shift Down} {MButton Down} keywait,MButton MButton Up ::发送{Shift Up} {MButton Up} 返回