|
aese126 發表於 Apr 30, 2016 0:20:17 GMT
請教各位前輩
如果在一個區域A,搜尋B.png或C.png其中一張圖片就執行D動作否則執行E動作要怎麼寫 目前寫法如下:
B = Pattern("B.png"):similar(1) C = Pattern("C.png"):similar(1) Settings:setCompareDimension(true, 631)
Settings:setScriptDimension(true, 631) A=Region(0,0,100,50) D=Location(500, 20) E=Location(300, 80) if(A:exist(B,C)) then click(D) else click(E) end 請問以上寫法哪底錯了?
|
|
|
AnkuLua 發表於 May 1, 2016 2:12:55 GMT
1. similar 不要設1,0.9就很高了;這樣到別的機器才不會有問題 2. 模擬器寬度最好設成320的倍數,同樣能讓腳本更能在其他機器正常運作 2. if (A:exists(B) or A:exists(C)) then 3. 請繼續更新您發佈的腳本
|
|