autoit3 ie.au3 函数之——_IE_Example、_IE_Introduction

用户自定义函数 描述


_IE_Example显示一个新的浏览器窗口,预先装载 IE.au3的例子或者你自己测试的例子

; *******************************************************
; Example 1 - Create browser windows with each of the example pages displayed.
;               The object variable returned can be used just as the object
;               variables returned by _IECreate or _IEAttach
; *******************************************************
;

#include <IE.au3>
$oIE_basic =_IE_Example ("basic")
$oIE_form =_IE_Example ("form")
$oIE_table =_IE_Example ("table")
$oIE_frameset =_IE_Example ("frameset")
$oIE_iframe =_IE_Example ("iframe")


_IE_Introduction在一个新的浏览器窗口显示关于IE.au3的介绍信息

; *******************************************************
; Example 1 - Open a browser with the basic IE.au3 introductory text displayed
; *******************************************************
;

#include <IE.au3>
$oIE =_IE_Introduction ("basic")


你可能感兴趣的:(autoit3 ie.au3 函数之——_IE_Example、_IE_Introduction)