Retrieves the text from a standard status bar control.
StatusbarGetText ( "title" [, "text" [, part]] )
| title | The title of the window to check. |
| text | [optional] The text of the window to check. |
| part | [optional] The "part" number of the status bar to read - the default is 1. 1 is the first possible part and usually the one that contains the useful messages like "Ready" "Loading...", etc. |
| Success: | Returns the text read. |
| Failure: | Returns "" (blank string) and sets @error to 1 if no text could be read. |
AutoItSetOption("WinTitleMatchMode", 2)
Local $x = StatusbarGetText("Internet Explorer")
MsgBox(0, "Internet Explorer's status bar says:", $x)