是否有任何应用程序可以模拟 Windows 中的“选择复制并单击鼠标中键粘贴”行为?我希望找到一个 AutoHotkey 脚本来实现这一点,但我找不到。也许这里有人可以快速破解一个 :)。
答案1
嗯,有真正的 X-Mouse Gizmo,如果它适用于您的 Windows 版本(它有点过时)。
答案2
答案3
查看自动剪辑X。
AutoClipX 是一款高度可配置的程序,可自动将选定对象(如文本、文件和文件夹)复制到 Windows 剪贴板。单击鼠标按钮即可快速粘贴您复制的内容!AutoClipX 在您照常工作时安静地运行在系统托盘中。
答案4
SetWinDelay,2
CoordMode,Mouse
return
~MButton::
sleep 100
Send, ^v
return
~LButton::
MouseGetPos x0, y0
Loop
{
Sleep 20
GetKeyState keystate, LButton
IfEqual keystate, U, {
MouseGetPos x, y
break
}
}
if (x-x0 > 5 or x-x0 < -5 or y-y0 > 5 or y-y0 < -5)
{
Send ^c
}
if (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < DllCall("GetDoubleClickTime"))
Send ^c
if (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < DllCall("GetDoubleClickTime"))
doubleclick := true
return
#If doubleclick
~LButton::
doubleclick := false
if (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < DllCall("GetDoubleClickTime"))
{
Send, ^c
}
return