我希望我的自动热键脚本在我按下键盘上的 shift+3 键后点击鼠标,忽略按住的 shift 键。
例如,我以这种方式尝试过:
+3::
SetMouseDelay, 0
MouseGetPos, xpos, ypos
Send {Shift Up}
BlockInput, on
Send {Shift Up}
MouseClick, right, uhxpos, uhypos
Sleep, 41
MouseClick, left, yourxpos, yourypos
MouseMove, xpos, ypos
BlockInput, off
return
甚至试图等到班次物理释放后,仍然没有成功;
+3::
SetMouseDelay, 0
MouseGetPos, xpos, ypos
KeyWait, +
MouseClick, right, uhxpos, uhypos
Sleep, 41
MouseClick, left, yourxpos, yourypos
MouseMove, xpos, ypos
return
将不胜感激任何帮助,谢谢。