gpt4 book ai didi

autohotkey - 在没有任何控件的窗口上使用 ControlClick 坐标

转载 作者:行者123 更新时间:2023-12-02 17:30:32 35 4
gpt4 key购买 nike

我需要将点击发送到非事件窗口上的某个位置。此窗口在所述坐标处没有任何可点击的控件。

CoordMode, Mouse, Screen
SetControlDelay -1
ControlClick, x636 y189,WindowTitle,,,, NA Pos

每次我运行上面的代码,它都不会点击我指定的位置。它会点击我当前的鼠标位置,而不管窗口是否处于事件状态。

最佳答案

一些想法:

更新您的 AHK:
https://autohotkey.com/download/ahk-install.exe

以管理员身份运行脚本:

If not A_IsAdmin ;force the script to run as admin
{
Run *RunAs "%A_ScriptFullPath%"
ExitApp
}

使用PostMessage而不是 ControlClick :

PostClick(636,189,"WindowTitle")

PostClick(x,y,win="A") {
lParam := x & 0xFFFF | (y & 0xFFFF) << 16
PostMessage, 0x201, , %lParam%, , %win% ;WM_LBUTTONDOWN
PostMessage, 0x202, , %lParam%, , %win% ;WM_LBUTTONUP
}

关于autohotkey - 在没有任何控件的窗口上使用 ControlClick 坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34021138/

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