Function Reference


_IE_Introduction

Display introductory information about IE.au3 in a new browser window

#include <IE.au3>
_IE_Introduction ( [$sModule = "basic"] )

Parameters

$sModule [optional] specifies which module to run
    "basic" = (Default) basic introduction

Return Value

Success: an object variable pointing to an InternetExplorer.Application object.
Failure: sets the @error flag to non-zero.
@error: 5 ($_IEStatus_InvalidValue) - Invalid Value
@extended: Contains invalid parameter number

Remarks

The AutoIt Helpfile does not currently allow UDFs to have general documentation that covers a series of functions, but rather UDF documentation is focused on individual functions.
This function is intended to provide that general documentation. It will grow over time.

Related

_IE_Example

Example

; Open a browser with the basic IE.au3 introductory text displayed

#include <IE.au3>

Local $oIE = _IE_Introduction("basic")