最新发布
下一页-
一、加密字符串12TextMD5=plugin.Encrypt.Md5String("按键精灵" TracePrint "TextMD5=" &TextMD5二、获取文件MD5值12FileMD5=plugin.Encrypt.Md5File(&quo
-
一、让主板蜂鸣器报警1Call Plugin.Media.Beep(578, 1200 二、播放/停止音频文件123Call plugin.Media.Play("C:\Sound26.mp3" Delay 5000Call plugin.media.Stop(
-
一、在屏幕中显示文字(ShowScrTXT)123Call plugin.msg.ShowScrTXT(700,300,1024,900,"屏幕打字","00ee00" Delay 3000Call plugin.msg.HideScrTXT( 二、托盘提示信
-
一、得到/设置屏幕分辨率和色深1234567screenX = Plugin.sys.GetScRX( screenY = Plugin.sys.GetScRY( Dep=plugin.sys.GetScDep( TracePrint screenXTracePrint screenYTracePr
-
一、读写ini配置文件123Call plugin.file.WriteINI("补血配置","HP","80","C:\补血.ini" text=plugin.file.ReadINI("补血配置"
-
一、颜色插件相关的命令1、GetPixelColor得到指定点颜色123GetCursorPos x,ygetcolor = Plugin.color.GetPixelColor(x,y,0 TracePrint getcolor2、ColorToRGB颜色转RGB1234Call plugin.C
-
用脚本实现在记事本输入“hello”,然后输入“按键精灵”,最后把光标停留在“hello”和“按键精灵”之间。12345678910hwnd = Plugin.window.mousepoint( TracePrint "查找到的记事本窗口句柄为:"&hwndCall p
-
一、得到指定点颜色(GetPixelColor)1234GetColor=GetPixelColor(8,26 If GetColor = "3936FF" Then MoveTo 8, 26End If二、区域找色12345Fin