按键精灵调试后显示脚本已停止运行,是不是设置错误。

2024-11-25 20:19:22
推荐回答(2个)
回答1:

'楼主那样写也是可以的,下面这样写 可能思路会清晰些,语句会稍微的简洁些 
Do
 
if time > #17:35# then
    FindPic 0,0,1280,1024,"Attachment:\1.bmp",0.9,intX,intY
    If intX> 0 And intY> 0 Then
        MoveTo intX, intY : LeftClick 1 : Delay 1000
    End If
    FindPic 0,0,1280,1024,"Attachment:\2.bmp",0.9,intX,intY
    If intX> 0 And intY> 0 Then
        MoveTo intX, intY : LeftClick 1 : Delay 1000
        Exit Do '找到并点击完成后 退出循环
    End If
Else 
 Delay 60000
End If
 
Delay 200
Loop

回答2:

不对,自定义的变量已不再与网络时间挂钩,只是一个变量而已。