godsky 发表于 2014-7-14 21:08:57

在HELP文件_IEAction例子能运行吗

本帖最后由 godsky 于 2014-7-14 21:10 编辑

在HELP文件里面,搜索_IEAction,然后里面有2个例子,看第二个例子,代码如下: #include <IE.au3>
    $oIE = _IE_Example ("form")
    $oSubmit = _IEGetObjByName ($oIE, "submitExample")
    $hwnd = _IEPropertyGet($oIE, "hwnd")
    _IEAction ($oSubmit, "focus")
    ControlSend($hwnd, "", "", "{Enter}")

    ; Wait for Alert window, then click on OK
    WinWait("Windows Internet Explorer", "ExampleFormSubmitted")
    ControlClick("Windows Internet Explorer", "ExampleFormSubmitted", "")
    _IELoadWait ($oIE)我想根据他来执行我的代码:

下面我把详细的IE源码贴出来
<input type="button" name="sendSheet" title="确定" onclick="tthSheetTransferReply();" />
                                        <!--<input type="button" name="resetSheet" title="返回" onclick="javascript:history.back(1);"/>-->
点这个BUTTON之后,弹出一个IE的确认窗口,如图:

必须确定才可以继续执行程序,否则程序不继续执行。
但是根据例子的方法不能实现,求解

骗子 发表于 2014-7-15 03:01:46

本帖最后由 骗子 于 2014-7-15 03:03 编辑

照抄的太严重了
ControlClick("来自网页消息", "", "")
看看ControlClick 的帮助

godsky 发表于 2014-7-17 13:06:34

不行啊他的方法试过了 不行, 呵呵 懒省事 不想打字 内容差不多 呵呵回复 2# 骗子

godsky 发表于 2014-7-17 13:07:40

不行 该方法在我电脑上试过了 行不通回复 2# 骗子

骗子 发表于 2014-7-18 09:44:52

回复 4# godsky
WinWait("Windows Internet Explorer", "ExampleFormSubmitted")
这句你删除了?

看WinWait 和 ControlClick 的帮助

godsky 发表于 2014-7-31 20:09:40

实现不了,求解
页: [1]
查看完整版本: 在HELP文件_IEAction例子能运行吗