我想用 ahk 做同样的事情,但使用鼠标右键
I want to do the same thing done here with ahk but using right mouse button
所以我看到了 post,这与我的非常相似,但我想做 op 想做的事情,但我没有按住 ctrl,而是按住鼠标右键。谢谢。
我试过这样的事情:
suspend
send {RButton Down}{WheelUp}{RButton Up}::Send, {LControl Down}{LWin Down}
{Right}{LWin Up}{LControl Up}
return
F12::suspend
但是当我 运行 不是我想要的脚本时,这会立即执行操作。
好了,
~RButton & WheelUp::
Send, {LWin down}{LCtrl down}{Right}{LWin up}{LCtrl up}
return
~RButton & WheelDown::
Send, {LWin down}{LCtrl down}{Left}{LWin up}{LCtrl up}
return
只是替换了组合键并添加了直通,因此右键单击有效
所以我看到了
我试过这样的事情:
suspend
send {RButton Down}{WheelUp}{RButton Up}::Send, {LControl Down}{LWin Down}
{Right}{LWin Up}{LControl Up}
return
F12::suspend
但是当我 运行 不是我想要的脚本时,这会立即执行操作。
好了,
~RButton & WheelUp::
Send, {LWin down}{LCtrl down}{Right}{LWin up}{LCtrl up}
return
~RButton & WheelDown::
Send, {LWin down}{LCtrl down}{Left}{LWin up}{LCtrl up}
return
只是替换了组合键并添加了直通,因此右键单击有效