仅从AHK开始,并希望通过GPU-Z和Resource Monitor自动执行一些PC性能监控。我正在尝试编写一个简单的脚本来启动每个程序的数据记录过程。我尚未完成脚本,因为一旦激活GPU-Z窗口,鼠标将无法执行任何操作。我可能缺少一些很简单的东西,但是我无法解决。
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%
^F2::
If WinExist("ahk_class #32770")
{
MouseMove 490, 90, 100 ;Mouse moves all ok first time script is run
WinActivate
ControlClick Button17 ;Click the "Log to file" button --> doesn't work
}
Else
{
;Blank for now
}
If WinExist("ahk_class MMCMainFrame")
{
MouseMove 100, 100, 100, R ;Mouse does not move at all
WinActivate
}
Else
{
;Blank for now
}
return
答案 0 :(得分:0)
原来是权限/安全性问题。以管理员身份运行脚本即可解决该问题。