获取指定窗口中的文本.
WinGetText ( "窗口标题" [, "窗口文本"] )
窗口标题 | 目标窗口标题.参考标题特殊定义 |
窗口文本 | [可选参数] 指定窗口包含的文本. |
成功: | 返回指定窗口里面包含的文本. |
失败: | 返回 0(如果没有匹配的标题). |
Example()
Func Example()
; Retrieve the window text of the active window.
Local $sText = WinGetText("[ACTIVE]")
; Display the window text.
MsgBox(4096, "", $sText)
EndFunc ;==>Example