江中游按键精灵水瓶宫教学
第2章第8课
大漠插件-手机投屏窗口后台实战
零基础教你快速做一个打怪辅助
水瓶宫教学也是我新制作的教学主要发布给内部会员学习,为了让大家更好的接续按键精灵论坛教学所以现公开给大家
江中游老师QQ:2426410388;2025177703;390941087;微信:bauuia;抖音:275982100
文字识别方面最著名的就是大漠、图灵、乐玩插件,相信很多朋友都想学习这个知识,本课就带领大家学习大漠插件的文字识别:
按键精灵调用大漠插件,后台实战
窗口句柄——子窗口句柄
文字识别和查找
找图找色
小程序一个——某音划动
教学用的工具源码下载地址:
链接:https://pan.baidu.com/s/1KfN7LKt1QvL4KwOg-4l_0Q?pwd=1234
提取码:1234
解压密码:1234
大漠插件下载地址:
http://main.dmplugin.net:8088/
这里大家注意的是大漠是每月1-3号注册,所以到日子自己先注册一下,交不交钱是一回事,免的用到的时候猴急加瞪眼!
Dim 大漠路径,注册返回
大漠路径 = "c:\测试\插件"
Plugin.jd.CreateFolder 大漠路径
PutAttachment 大漠路径, "mm.dll"
PutAttachment ".\plugin", "l.dll"
PutAttachment ".\plugin", "jd.dll"
Plugin.jd.DmRegEx "l", "SetDllPathA", 大漠路径 & "\mm.dll", 0
Set dm = createobject("dm.dmsoft")
TracePrint dm.ver()
注册返回 = dm.reg("jiangzhongyou2bf8e2c90078b4b698f33db62cbc09fb", "0001")
TracePrint 注册返回
dm.setpath 大漠路径
dm.setdict 0, "测试.txt"
hwnd = dm.FindWindow("SDL_app", "V2002A")
TracePrint hwnd
dm_ret = dm.BindWindowEx(hwnd,"gdi","dx.mouse.position.lock.api|dx.mouse.clip.lock.api|dx.mouse.input.lock.api|dx.mouse.api","normal","",0)
TracePrint dm_ret
Delay 500
//dm.moveto 299, 581
//Delay 100
//dm.leftclick
//
//
//
//Delay 100
dm_ret = dm.FindStrFast(0, 0, 2000, 2000, "抖音", "f8f9fd-abadb6", 0.9, intX, intY)
TracePrint intX
If intX >= 0 and intY >= 0 Then
dm.MoveTo intX, intY-34
Delay 100
dm.leftclick
Delay 100
End If
Do
Delay 100
dm_ret = dm.FindStrFast(0, 0, 2000, 2000, "首页", "b@000000-abadb6", 0.9, intX, intY)
TracePrint intX
If intX >= 0 and intY >= 0 Then
Exit Do
End If
Loop
TracePrint "抖音已经打开了........"
Sub OnScriptExit()
dm_ret = dm.UnBindWindow()
Delay 500
End Sub