函数参考


WinWait

暂停脚本的执行直至指定窗口存在(出现)为止.

WinWait ( "窗口标题" [, "窗口文本" [, 超时时间]] )

参数

窗口标题 目标窗口标题. 参考 标题特殊定义.
窗口文本 [可选参数] 目标窗口文本.
超时时间 [可选参数] 超时时间,以秒为单位.

返回值

成功: 返回值为 出现的窗口的句柄.
失败: 返回值为 0,说明已超时.

注意/说明

None.

相关

WinActive, WinExists, WinWaitActive, WinWaitClose, WinWaitNotActive, WinWaitDelay (Option), ProcessWait

示例/演示


Example()

Func Example()
    ; Run Notepad
    Run("notepad.exe")

    ; 等待10秒,等着记事本窗口出现
    WinWait("[CLASS:Notepad]", "", 10)

    ;再蛋疼等待2秒
    Sleep(2000)

    ;使用记事本的"类"名称关闭记事本窗口
    WinClose("[CLASS:Notepad]")
EndFunc   ;==>Example