gpt4 book ai didi

autohotkey - 在 AutoHotkey 中按住鼠标左键

转载 作者:行者123 更新时间:2023-12-03 22:01:37 35 4
gpt4 key购买 nike

我想要一个脚本,其中按 F1 使 AutoHotkey 按住鼠标左键。然后我希望脚本在我再次按下该键时释放鼠标。

我怎样才能做到这一点?

最佳答案

我会使用 Click down 和 Click up

Click is generally preferred over MouseClick because it automatically compensates if the user has swapped the left and right mouse buttons via the system's control panel.


F1::
alt := not alt
if (alt)
{
Click down
}
else
{
Click up
}
Return

关于autohotkey - 在 AutoHotkey 中按住鼠标左键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1993003/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com