0

这是我的代码:

#include <GUIConstantsEx.au3>
GUICreate( "Main", 1200, 700 )
$viewer = ObjCreate( "Shell.Explorer.2" )
GUICtrlCreateObj( $viewer, 5, 5, 1000, 690 )
$viewer.navigate( "url_for_website" )
GUISetState( @SW_SHOW )
$running = 1
While $running
 $event = GUIGetMsg()
 Switch $event
  Case $GUI_EVENT_CLOSE
     $running = 0
 EndSwitch
WEnd

我将如何使用上面的代码查找用户输入字段?朝着正确的方向推动将非常有帮助!

4

1 回答 1

0

这应该可以帮助您理解,因为这是一个很棒的 IE 脚本。此外,它应该让您了解如何实施您想做的事情:: http://www.autoitscript.com/forum/files/file/227-ieau3/

于 2013-06-04T18:30:11.403 回答