Display introductory information about IE.au3 in a new browser window
#include <IE.au3>
_IE_Introduction([$s_module = "basic"])
| $s_module | [optional] specifies which module to run basic = (Default) basic introduction |
| Success: | Returns an object variable pointing to an InternetExplorer.Application object |
| Failure: | Returns 0 and sets @ERROR |
| @Error: | 0 ($_IEStatus_Success) = No Error |
| 5 ($_IEStatus_InvalidValue) = Invalid Value | |
| @Extended: | Contains invalid parameter number |
; *******************************************************
; Example 1 - Open a browser with the basic IE.au3 introductory text displayed
; *******************************************************
#include <IE.au3>
Local $oIE = _IE_Introduction("basic")