按鍵精靈找圖多圖,按鍵精靈全屏找圖,以找到不同的圖來執行不同的動作

2022-09-01 12:30:19 字數 2967 閱讀 1222

1樓:匿名使用者

rem 找b圖

findpic 0,0,1024,768,"attachment:\b圖.bmp",0.9,intx,inty

if intx < 0 then

delay 1000

goto 找b圖

end if

rem 找a圖

findpic 0,0,1024,768,"attachment:\a圖.bmp",0.9,intx,inty

if intx > 0 then

點選a圖

goto 找b圖

end if

指令碼結束

我這個最簡單

2樓:賴漠軒

dim tu(3), x(3), y

tu(0) = "attachment:\test1.bmp"

tu(1) = "attachment:\test2.bmp"

tu(2) = "attachment:\test3.bmp"

tu(3) = "attachment:\test4.bmp"

x(0) = 0 : x(1) = 0 : x(2) = 0 :

x(3) = 0 '起初全部為 0 代表此圖沒有被找到,與下面的x(y) 呼應。 至於這個 : 符號我就不知道怎麼解釋了,反正可以這樣用

doy = 0 '用於迴圈賦值.

if x(0) = 1 and x(1) = 1 and x(2) = 1 and x(3) = 1 then '在此x(3) 代表 需要4張**全部找到才會跳出迴圈。少一張也是不行的。

exit do

else

for 3 '迴圈三次,y初始值為0,三次後 就為3。 你再看下面的 tu(y) ,x(y) 應該就懂了吧?

findpic 0,0,1024,768,tu(y),0.9,intx,inty

if intx > 0 and inty > 0 then

//這裡放**。

x(y) = 1 '如果tu(0) 被找到 那麼x(0) 就=1 對應上面的 if ,如果tu(1)被找到,那麼 x(1)就=1.........

end if

y = y + 1

next

end if

loop

按鍵精靈全屏找圖,以找到不同的圖來執行不同的動作

3樓:匿名使用者

findpic 0,0,2000,2000,"attachment:\要找的圖.bmp",0.9,intx,inty

if intx>0 and inty>0 thenmoveto intx,inty

messagebox "找到圖形,滑鼠已經移到圖形上面"

else

messagebox "沒找到!"

end if

把要找的圖截圖好放在附件裡

4樓:匿名使用者

//迴圈找多圖,執行什麼自己寫~

do//找圖1

findpic 0,0,1024,768,"attachment:\神盾.bmp",0.9,intx,inty

//以下是條件判斷;如果返回的座標大於0,那麼就說明找到了。

if intx > 0 and inty > 0 then//執行什麼自己寫~

end if

//找圖2

findpic 0,0,1024,768,"attachment:\神盾.bmp",0.9,intx,inty

//以下是條件判斷;如果返回的座標大於0,那麼就說明找到了。

if intx > 0 and inty > 0 then//執行什麼自己寫~

end if

delay 1000

loop

按鍵精靈 如何在迴圈中,找兩張圖,找到其中隨意一張圖就跳出迴圈!

5樓:yesyes科

1、首先在桌面上按下print screen鍵,截下整個桌面的截圖。

2、然後開啟按鍵精靈新建指令碼,切換影象能看見剛才截的圖。

3、點選滑鼠拖動滑鼠,**另存為自己能找到的資料夾內,**格式為bmp。

4、執行**:findpic 0,0,1024,768,"c:\按鍵精靈2014\01.

bmp",0.9,intx,intyif intx > 0 and inty > 0 thenend if。(找到後滑鼠停留的點為區域的左上角)。

6樓:

dofindpic 976,749,1133,791,"attachment:\1.bmp",0.9,intx,inty

if intx > 0 and inty > 0 then//找到了

goto 跳出迴圈

else

end if

findpic 976,749,1133,791,"attachment:\2.bmp",0.9,intx,inty

if intx > 0 and inty > 0 then//找到了

goto 跳出迴圈

else

end if

loop

rem 跳出迴圈

請過目~親~

按鍵精靈 區域找多圖 10

求按鍵精靈程式設計:區域找圖 能否一次找到 多個螢幕上的圖

7樓:深藍之泉

可以迴圈找圖。。。只要把起始座標改成變數。一般找圖範圍是0,0,1440,900,你把0,0改成x,y

。找第二張圖的時候只要把intx,inty代入x,y即可。

不明白再問。。。。

8樓:匿名使用者

你就找到一個再找下一個好了。。

9樓:匿名使用者

只能一個個找,不能一次一條命令全找到。

但你可以一條條命令寫下去,一條命令找一個圖。

按鍵精靈區域找圖多圖判斷,按鍵精靈 區域找圖多圖判斷

dofindpic 0,0,1024,768,attachment a1.bmp 0.9,intx,inty if intx 0 and inty 0 thencall a1 exit do end if findpic 0,0,1024,768,attachment b1.bmp 0.9,intx...

按鍵精靈全程找圖命令,按鍵精靈裡找圖,連續找圖並執行命令?

裡面加兩句找圖 即可。如果你不需要馬上點掉對話方塊,就可以這樣做。能單執行緒就單執行緒。多執行緒如果有引數傳達,不好控制。按鍵精靈裡找圖,連續找圖並執行命令?按鍵精靈如何連續找圖?就是找到當前圖後執行下一條找圖命令?你現在有解決方法麼?我也遇到了這個問題。按鍵精靈,找圖命令怎麼用 我覺得 找圖 不能...

按鍵精靈,大漠找圖的問題,按鍵精靈,大漠找圖的問題

你上面不是也有賦值操作了麼!你是有什麼疑問啊!你想要的操作,跟id,x,y的賦值有何不同麼!按鍵精靈用大漠外掛 後臺找圖 能找到 但是不可以遮擋是什麼原因 5 假後臺,沒繫結成功。繫結後,除錯時候你可以遮擋後用截圖測試下圖色繫結是否成功。按鍵精靈呼叫大漠外掛後臺找圖指令碼,有時候要開關2次才能找到,...