回复 8# oem923
简单意思就是在弹出你那确认窗口前运行一个程序,这个程序仅给你按一下确认框就退出if @compiled=0 then exit ;需编译后运行
IF $cmdline[0]=1 then
AutoItSetOption("TrayIconHide",1) ;隐藏图标
If $cmdline[1]='PressOK' Then CCC()
exit
Endif
Run(@AutoItExe & ' PressOK') ;用新进程按下面的确认,传递参数
msgbox(0,'AAA','BBB')
msgbox(0,'','22222')
Func CCC()
winwait('AAA','BBB')
sleep(2000)
ControlClick('AAA','BBB', 2)
EndFunc
Func ABC()
while WinExists('Microsoft Internet Explorer','您确定要')=0 and WinExists('来自网页的消息','您确定要')=0 ;IE6/IE8
sleep(50)
wend
ControlClick('Microsoft Internet Explorer','您确定要', 2)
ControlClick('来自网页的消息','您确定要', 2)
EndFunc
|