AHK:对话框的自动化

时间:2016-01-27 03:45:00

标签: autohotkey hotkeys

如何自动化对话框,有时会出现多次对话框,如果出现对话框,请按确定或输入。 有没有办法使用AHK脚本自动化对话框?

我使用了以下脚本

while WinActive("Convert Properties")
{
Send, {ENTER}
sleep 600
}

1 个答案:

答案 0 :(得分:1)

确保使用autohotkey安装文件夹中的window spy实用程序获取窗口标题。

windowTitle = Convert Properties

;Call CloseWindow periodically passing the windowTitle as argument:
CloseWindowWithBoundArgument := Func("CloseWindow").bind(windowTitle)
SetTimer, %CloseWindowWithBoundArgument%

;Wait for a window to exist, then close it:
CloseWindow(winTitle) {
    WinWait, %winTitle%, %winText%   ; wait until the window exists
    WinClose, %winTitle%, %winText%  ; close it
}

For a more detailed answer click here