第一个问题:
MoveTo x,y //x,y是右上角坐标
LeftClick 1
t1 = Plugin.Sys.GetTime()
//这里另一段要执行的指令
t2 = 0
While t2 - t1 <= 30000 //30000毫秒=30秒
t2 = Plugin.Sys.GetTime()
Delay 50 //适当延时,减少CPU负担
Wend
MoveTo x,y //x,y是右上角坐标
LeftClick 1
第二个问题,你要学会用找图语句:
FindPic 0,0,1024,768,"Attachment:\出现的图片.bmp",0.9,intX,intY
If intX > 0 And intY > 0 Then
//这里写出现图片要执行的代码
Else
//这里写没出现图片要执行的代码
End If