这意思?你输入的东东有用么……#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("输入盛大通行证账户名", 280, 150)
$Input_1 = GUICtrlCreateInput("", 15, 20, 250, 20)
$Button1 = GUICtrlCreateButton("运行游戏", 100, 125, 60, 20)
$Button2 = GUICtrlCreateButton("清空", 200, 125, 60, 20)
GUICtrlSetData($Input_1, '')
GUISetState(@SW_SHOW)
ControlFocus($Form1, "", $Button2)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Install()
Case $Button2
GUICtrlSetData($Input_1, '')
EndSwitch
WEnd
Func Install()
Run("g:\传奇归来.exe")
WinWait("《传奇归来》公测版 安装", "欢迎使用 《传奇归来》公测版 安装向导")
ControlClick("《传奇归来》公测版 安装", "欢迎使用 《传奇归来》公测版 安装向导", "Button 5")
Send("!n")
WinWait("《传奇归来》公测版 安装", "在安装 《传奇归来》公测版 之前")
ControlClick("《传奇归来》公测版 安装", "在安装 《传奇归来》公测版 之前", "Button 5")
Send("!i")
WinWait("《传奇归来》公测版 安装", "选择 《传奇归来》公测版 要安装的文件夹")
ControlClick("《传奇归来》公测版 安装", "选择 《传奇归来》公测版 要安装的文件夹", "Button 5")
Send("!i")
WinWait("《传奇归来》公测版 安装请输入推荐用户通行证", "安装完成")
ControlClick("《传奇归来》公测版 安装请输入推荐用户通行证", "安装完成", "Button5", "left", "1")
Send("!n")
EndFunc ;==>Install
|