标题: [文本处理] bat求助如何现实鼠标点击选择? [打印本页]
作者: 北极奇熊 时间: 2023-8-22 10:54 标题: bat求助如何现实鼠标点击选择?
如何现实鼠标在【 】标点击选择?
如ntbootautofix这个脚本
以下是效果图
望,各位大佬帮忙解决一下,谢谢
作者: Batcher 时间: 2023-8-22 11:04
回复 1# 北极奇熊
你发的图片别人看不到,建议换个图床:
http://bbs.bathome.net/thread-60985-1-1.html
界面工具 ConsExt.exe 1.1 实现批处理鼠标操作
http://bbs.bathome.net/thread-5177-1-1.html
使用 ConsExt.exe 键盘鼠标同时支持的批处理版小强系统优化工具4.0
http://bbs.bathome.net/thread-5149-1-1.html
命令行工具 mk.exe 批处理鼠标与键盘兼定时
http://bbs.bathome.net/thread-60771-1-1.html
命令行工具 Mouse.exe 实现批处理鼠标操作
http://bbs.bathome.net/thread-59467-1-1.html
命令行工具 Mouse.exe 支持鼠标的批处理扫雷游戏
http://bbs.bathome.net/thread-59467-1-1.html#pid242635
命令行工具 Cmos.exe 支持鼠标的批处理五子棋游戏
http://bbs.bathome.net/thread-4423-1-1.html
http://bbs.bathome.net/thread-2954-1-1.html
试试第三方命令行工具Cmos.exe
http://bbs.bathome.net/thread-3148-1-1.html
其它鼠标相关的第三方命令行工具
http://bcn.bathome.net/s/tool/index.html?key=鼠标
作者: 北极奇熊 时间: 2023-8-22 11:14
这个我看过了不行,没办法实现该功能
作者: Batcher 时间: 2023-8-22 11:17
回复 3# 北极奇熊
你用的哪个版本的ntbootautofix?
作者: 北极奇熊 时间: 2023-8-22 11:26
回复 4# Batcher
2.5.7的版本
作者: Batcher 时间: 2023-8-22 15:58
回复 5# 北极奇熊
这个工具执行之后,会在%temp%目录下生成一个NTaufix文件夹。
里面有几个exe文件,包括2楼提到的ConsExt.exe,你看到的鼠标操作就是主要靠它实现的。
作者: Nsqs 时间: 2023-8-23 11:58
- @echo off
- Call:Mouse-LeftClick 80,80
- pause
- goto :eof
-
-
-
- :Mouse-LeftClick
- powershell -noprofile -executionpolicy bypass "Add-Type 'using System.Runtime.InteropServices;public class Mouse{[DllImport(\"user32\")]private static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);[DllImport(\"user32\")]public static extern bool SetCursorPos(int x, int y);private const int MOUSEEVENTF_CLICK=0x02|0x04;Mouse(){}public static void LeftClick(int x,int y){SetCursorPos(x,y);mouse_event(MOUSEEVENTF_CLICK,0,0,0,0);}}';[mouse]::LeftClick(%1,%2)"
- goto :eof
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |