| 程式碼一開始有一個FOR迴圈 我希望他跑完之後X圈之後
 跳出來跑"REM  視窗檢查"
 可是不管我怎麼弄~他還是只會跑FOR迴圈
 請大大幫幫我一下
 
 
 
 
 //===========進行===============//
 For 1
 Rem 檢查
 VBSCall FindPic(0,175,800,400,"04.bmp",0.9,x,y)
 If x>=0 and y>=0
 Goto 回覆
 Else
 Goto 下拉視窗
 EndIf
 //============================//
 Rem 回覆
 MoveTo x y+100
 LeftClick 2
 Delay 1500
 SayString test0009
 Delay 500
 KeyPress 9,1
 Delay 500
 KeyPress 13,1
 Delay 5000
 //================================//
 Rem 下拉視窗
 MoveTo 1013,692
 LeftDown 1
 Delay 1000
 Goto 檢查
 //================================//
 EndFor
 
 
 
 Rem 視窗檢查
 IfColor 224,756,c97736,1
 Goto 關閉視窗
 Else
 Goto 重建視窗
 //=========================//
 Rem 關閉視窗
 MoveTo 275,751
 Delay 500
 RightClick 1
 Delay 500
 KeyPress 67,1
 Delay 500
 Goto 視窗檢查
 //====================//
 Rem 重建視窗
 MoveTo 163,751
 LeftClick 1
 Delay 1000
 MoveTo 202,34
 LeftClick 1
 Delay 1000
 MoveTo 299,106
 LeftClick 1
 |