求一个快速度的QQ聊天刷屏脚本
autojs吧
全部回复
仅看楼主
level 5
有没有人有?
2017年07月22日 06点07分 1
level 1
木有
2017年07月31日 07点07分 2
吧务
level 13
"auto" ;
toast("请打开一个聊天窗口") ;
sleep(5000);
var i = 0;
while(true){
setText(i);
i=i+1;
click("发送");
sleep(500);
}
2017年08月16日 00点08分 3

2018年08月22日 20点08分
吧务
level 13
需要你自己手动输入,它帮你点发送
2017年08月16日 00点08分 4
手动输入的地方在哪里?
2019年10月30日 12点10分
吧务
level 13
"auto";
toast("请打开一个聊天窗口" );
sleep(500);
while(true)
input("你要刷屏的字");
click("发送");
sleep(500);
2017年08月16日 02点08分 5
这个更快
2017年08月16日 02点08分
谢了
2017年08月17日 02点08分
大神
2017年08月29日 00点08分
怎么用??
2020年02月27日 12点02分
level 5
最新版自带
2017年08月17日 04点08分 6
level 5
"auto";
toast("请打开一个聊天窗口");
sleep(500);
while (true) {
input("你要刷屏的字");
click("发送");
}
2017年11月29日 22点11分 7
level 2
"auto";
var cs = rawInput("请输入刷屏次数");
if (cs <= 0) {
toast("刷屏次数不能少于或等于0");
} else {
toast("请打开聊天界面!");
while (0 < cs) {
while (!input("刷屏神器"));
while (!click("发送"));
cs--;
}
toast("刷屏完成!");
}
//脚本作者QQ:417843676
2017年12月04日 03点12分 8
请问下,输入内容后怎么执行回车操作(短信填完号码后需要按输入法回车)
2017年12月06日 10点12分
level 1
50
2020年03月16日 10点03分 9
level 1
Set WshShell= WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "在吗"
for i=1 to 100
WScript.Sleep 500
WshShell.SendKeys "^v"
WshShell.SendKeys i
WshShell.SendKeys "%s"
Next
2020年06月24日 04点06分 10
level 1
有没有微信刷屏的?就输入你要刷的字,然后可以控制速度和次数的。
2022年08月03日 01点08分 11
level 1
大佬,请教个问题,想异步监听屏幕,不影响其他的操作,当屏幕内出现特定的图片或者文字后进行对比,如果出现就暂停当前活动,执行设定的操作,autojs有函数或事件能监听吗
2022年11月20日 09点11分 12
1