万一上述方法都无法为您解决,AutoHotKey可以完全满足您的需求。实际上,当我仍试图在eeePC上完成工作时,我使用了类似的脚本。安装AHK解释器,然后将此脚本另存为* .ahk文件并运行。
Hotkey, LButton,, Off ; we only need this once the Win + MouseLeft combo has been triggered
return
+LButton::
Send, {LButton Down} ; Send a MOUSEDOWN event
OnExit("sendUpEvent") ; ensure the mouse button is not left in the 'down' state upon script exit
Hotkey, LButton,, On ; Activate Hotkey below
return
LButton::
sendUpEvent()
{
OnExit("sendUpEvent", 0) ; removing the onExit handler here avoids unnecessarily sending a MOUSEUP upon exit
Send, {LButton Up} ; Send a MOUSEUP event
Hotkey, LButton,, Off ; switch back to normal left click behaviour
LButtonHeldDown := false
}