Core Function ControlGetText
From Sputnik Wiki
ControlGetText ( <title>, <text>, <controlID> )
Contents |
Description
Retrieves text from a control.
Parameters
Title
The title of the window to access.
Text
The text of the window to access.
controlID
The control to interact with.
Return Value
Success: Returns complete text.
Failure: Returns empty string.
Remarks
None.
Example
$text = ControlGetText("Untitled - Notepad", "", "Edit1"); MsgBox("Full text read was: $text");