求炫舞高手脚本帮忙改下脚本.

char buffer[BUFFER_SIZE];
char c = 0;
//下面是从文件读,没有问题,符合我的要求
fp = fopen(argv[1], "r");
while (readCh(fp, buffer, BUFFER_SIZE, 0)) {
addCh(buffer);
printCh();
fclose(fp);
return EXIT_SUCCESS;
//下面是从stdin读取,同样内容输出却不一样
c = getc(stdin);
while (c != EOF) {
while (readCh(stdin, buffer, BUFFER_SIZE, 0))) {;
addCh(buffer);
printCh();
return EXIT_SUCCESS;
C/C++ code
举个例子,读取的内容是"She's HoT":
从文件读是:
从stdin读是:
为什么读取的结果不一样呢?从文件读的可以达到我的预期目标,说明我readCh,addCh,printCh函数应该没错吧.那我想从stdin读,代码应该怎么写呢?还有一个小问题:while (c != EOF) 和while (c != '\0' && c != EOF)有区别吗?啥区别?------解决方案--------------------
//下面是从stdin读取,同样内容输出却不一样c = getc(stdin);while (c != EOF) {while (readCh(stdin, buffer, BUFFER_SIZE, 0))) {这里是读了两次啊,先用getc读取一个字符,然后判断是否为EOF, 不是的话下一次用readCh读一个单词.这时已经跳过了第一个字符.
创建一个命名管道,写入了数据以后,Wait事件句柄却不能返回?该怎么处理
创建一个命名管道,写入了数据以后,Wait事件句柄却不能返回?我写了一个很小的程序,VC2010上面:C/C++ code
#include "stdafx.h"
#include&Windows.h&
int _tmain(int argc, _TCHAR* argv[])
HANDLE hPipe= CreateNamedPipe( "mypipe",
PIPE_ACCESS_DUPLEX|FILE_FLAG_OVERLAPPED,
PIPE_TYPE_BYTE|PIPE_READMODE_BYTE,
PIPE_UNLIMITED_INSTANCES,
sizeof(UUID),
sizeof(UUID),
HANDLE m_evt=CreateEvent(NULL,TRUE,FALSE,"myevent");
OVERLAPPED m_
ZeroMemory( &m_ov, sizeof(m_ov) );
m_ov.hEvent = m_
if( ConnectNamedPipe( hPipe, &m_ov ) ){
printf("connect fail\n");
WriteFile(hPipe,"my",2,&dwWritten,nullptr);
WaitForSingleObject(m_evt,INFINITE);
printf("Ok\n");
运行程序,一直卡在WaitFor那里。不返回。我觉得,既然这个命名管道,Connect的时候关联了overlapped,里面设置了hEvent对象,那么当管道里面有数据的时候,就应该设置event句柄的信号状态吧。为什么我的WaitFor函数不能返回呢?我尝试了WaitFor管道句柄也不行,也是阻塞。请教各位,如何让管道里有数据的时候我的event可以有信号被Wait返回?为什么呢?------解决方案--------------------
HANDLE hPipe= CreateNamedPipe( "mypipe",第一个参数都不对吧,"\\\\.\\pipe\\xxx"
求ajax高手帮忙看下,不知道哪儿错了。有数据传递,但是总是出的是没有数据?该怎么处理
求ajax高手帮忙看下,不知道哪儿错了。有数据传递,但是总是出的是没有数据??这是我的handler:我试过了,GetUnreadMsgCnt(int receiveId)查出了数据。public class GetMsgCount : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
int receiveId = Convert.ToInt32(context.Request.QueryString["receiveId"]);
int result = new MessageManager().GetUnreadMsgCnt(receiveId);
if (result & 0)
context.Response.Write("1");
context.Response.Write("-1");
context.Response.End();
context.Response.Close();这是我的js获取数据:var count=0;
function ajaxGetMsgCount()
url: "ajax/GetMsgCount.ashx",
type:"GET",
data:{"receiveId":$(".txtMyId").val()},
radomID:Math.random(),
success:function(){
if(count.responseText=="1")
alert("有消息");
alert("没有消息");//总是执行这一件,我设置了断点,测试是(result & 0),但是老执行到了这儿
});有没有哪位高手知道错在哪了啊??求帮忙。
}------解决方案--------------------
var count=0;
function ajaxGetMsgCount() { $.ajax({ url: "ajax/GetMsgCount.ashx", type:"GET", data:{"receiveId":$(".txtMyId").val()}, radomID:Math.random(), success:function(data){ if(data=="1") { alert("有消息"); } else { alert("没有消息");//总是执行这一件,我设置了断点,测试是(result & 0),但是老执行到了这儿 } } });有没有哪位高手知道错在哪了啊??求帮忙。 }
如果您想提高自己的技术水平,欢迎加入本站官方1号QQ群:&&,&&2号QQ群:,在群里结识技术精英和交流技术^_^
本站联系邮箱:请高手帮忙反编译一下这我的这个脚本 源码丢了 - 『 提问交流 』 -
AUTOIT CN AutoIt中文论坛|acn|au3|软件汉化 - 分享您的技术!
帖子112&精华0&积分105&威望10 点&金钱67 块&贡献29 分&阅读权限20&在线时间114 小时&注册时间&最后登录&
请高手帮忙反编译一下这我的这个脚本 源码丢了
网吧专用的脚本 涉及隐私请高手反编译完源码不要公开 谢谢
附件: 您需要才可以下载或查看附件。没有帐号?
帖子543&精华0&积分530&威望45 点&金钱4265 块&贡献168 分&阅读权限50&在线时间304 小时&注册时间&最后登录&
你有什么证据能证明这个代码是你写吗?
帖子112&精华0&积分105&威望10 点&金钱67 块&贡献29 分&阅读权限20&在线时间114 小时&注册时间&最后登录&
我记得里面的部分代码 60.194.*.*
帖子1782&精华0&积分1951&威望204 点&金钱7911 块&贡献652 分&阅读权限70&在线时间1869 小时&注册时间&最后登录&
回复&&skyfree
我记得里面的部分代码 60.194.*.*
feitn 发表于
看起来确实是你写的,看了下,发短信了,请注意查收。
帖子112&精华0&积分105&威望10 点&金钱67 块&贡献29 分&阅读权限20&在线时间114 小时&注册时间&最后登录&
& & 谢谢大神
帖子543&精华0&积分530&威望45 点&金钱4265 块&贡献168 分&阅读权限50&在线时间304 小时&注册时间&最后登录&
& & IP不能作为唯一性证据,IP针对哪个网吧一问就知道。拿出关键性的证据吧,例如函数名,例如各函数作用,程序执行流程。
帖子68&精华0&积分94&威望25 点&金钱234 块&贡献10 分&阅读权限20&在线时间9 小时&注册时间&最后登录&
反编译别人的程序不道德哦
帖子277&精华0&积分214&威望15 点&金钱49 块&贡献45 分&阅读权限30&在线时间199 小时&注册时间&最后登录&
本帖最后由 58fly 于
03:55 编辑
TONGJI()
$RESULT = ( & &\config.ini&, &设置&, &时间&, &0&)
$RESULT1 =
$FILES = ( & &年&&
& &分&& &停电退钱记录.txt&, 0x)
$FILES1 = ( & &\tmp.dat&, 0x)
$FILES = + 0xFFFFFFFF
(0x, &错误&, &不能打开文件.&)
$FILES1 = + 0xFFFFFFFF
(0x, &错误&, &不能打开文件.&)
($FILES, & & & &卡 号 & & &&& & & & & & &身份证号码 & & && & & & & 姓名 & && & & & & 余额 & &&)
$RS .open (&SELECT * FROM tComLog Where sStopTime&='&& $RESULT & &' AND sStopTime&=&& $RESULT1 & & AND iCountType=1&)
$FDS = $RS .Fields (0x) .value
$RS .close
($FDS) = 0x
$RS .open (&SELECT * FROM tComLog Where sStopTime&='&& $RESULT & &' AND sStopTime&=&& $RESULT1 & & AND iCountType=1&)
( $RS .eof
$RS .bof)
$K = $RS .Fields (0x0000000A) .value
$S = $RS .Fields (0x) .value
$X = $RS .Fields (0x) .value
$Q = $RS .Fields (0x) .value
($K) & 0x0000000F
$K = ($K & & & & &&)
($X) & 0x
$X = ($X & & &&)
($FILES, $K & & &| &&& $S & & &| &&& $X & & & | & && $Q / 0x & &元 &)
($FILES, &~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&)
($FILES1, $RS .Fields (0x) .value / 0x)
($RS .Fields (0x) .value) = 0x
$RS .movenext
($FILES1)
( & &\tmp.dat&, $ARECORDS)
(0x, &错误&, & Error reading log to Array & & error:&& )
$RESULTH = 0x, $RESULTM = 0x
($ARECORDS) + 0xFFFFFFFF
$RESULTH += $ARECORDS [$X ]
($FILES, &总共&& $RESULTH & &元&)
$RS .close
( & &\tmp.dat&)
JIFENTONGJI()
$RQ = &12&
+ 0xFFFFFFFF
( & &年&& $RQ & &月会员奖励名单.txt&) = 0x
(&RsConsole.exe&) = 0x
(&D:\NetecardConsole\RsConsole.exe&)
(&旺旺吧 - 登录&)
$BAN = &B&
$BAN = &A&
(&旺旺吧 - 登录&, &&, &Edit1&, $BAN)
(&旺旺吧 - 登录&, &&, &TsEdit1&, &123456&)
(&旺旺吧 - 登录&, &&, &TsBitBtn2&, &left&)
(&旺旺吧上网经营管理系统 - 控制台&)
(0x)
$FILES = ( & &年&& $RQ & &月会员奖励名单.txt&, 0x)
$FILES = + 0xFFFFFFFF
(0x, &错误&, &不能打开文件.&)
($FILES, & & 卡号&& & & & & & & &&& &积分&& & & & & & & & && &姓名&)
$RS .open (&SELECT * FROM tAccount Where iscore&=38000&)
$SNEWDATE = (&m&, + 0xFFFFFFFF, ())
$SNEWDATE = ($SNEWDATE, 0x)
$SNEWDATE = ($SNEWDATE, &/&, &&)
$SNEWDATE = ($SNEWDATE, &:&, &&)
( $RS .eof
$RS .bof)
$S1 = $RS .Fields (0x) .value
$S2 = ($RS .Fields (0x) .value / 0x, 0x)
$RS1 .open (&SELECT * FROM tComLog Where sSerialID='&& $S1 & &' AND sStopTime& && $SNEWDATE & &&)
$S4 = $RS1 .Fields (0x) .value
$STEXT = ($S4, &(扫)&, &&)
$RS1 .close
$RS1 .open (&UPDATE tAccount SET iscore=-3800 Where sInternalID='&& $S1 & &'&)
$RS1 .close
(&旺旺吧上网经营管理系统 - 控制台&, &&, &Edit1&, &+&& $S1, 0x)
(&旺旺吧上网经营管理系统 - 控制台&, &&, &Edit11&, &+&& $S1, 0x)
(0x)
(&旺旺吧上网经营管理系统 - 控制台&, &&, &Edit1&, &{ENTER}&)
(&旺旺吧上网经营管理系统 - 控制台&, &&, &Edit11&, &{ENTER}&)
(&续费充值&, &&, 0x)
(&续费充值&, &&, &TsCurrencyEdit9&, &38&)
(0x)
(&续费充值&, &&, &TsBitBtn1&, &left&)
(&续费充值&)
($FILES, $S1 & & & & &&& $S2 & &元 & & & & & && $STEXT)
($FILES, &~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&)
($RS .Fields (0x) .value) = 0x
$RS .movenext
($FILES, &总共:&& $ZH & &元&)
$RS .close
($FILES)
$RS .open (&UPDATE tAccount SET iscore=0 Where iscore&0&)
$RS .close
$RS .open (&UPDATE tAccount SET iTime=10000 Where iLevelID=101&)
$RS .close
_QUIT()
$CONN .close
$RS .close
复制代码 高亮切换
[通过 QQ、MSN 分享给朋友]查看: 1762|回复: 7
请各位斑竹,高手帮忙解决下,LR脚本关联问题
该用户从未签到
本帖最后由 gao9960 于
14:26 编辑
求高手解救啊
给下面这段脚本做关联
& && && && && &&&web_submit_data(&examAction!getExamlist&,
& & & & & & & & &Action=http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!getExamlist&,
& & & & & & & & &Method=POST&,
& & & & & & & & &EncType=multipart/form-data&,
& & & & & & & & &RecContentType=text/html&,
& & & & & & & & &Referer=http://10.71.0.175:7070/tiandun/web/jsp/personal/examAction!examLogin&,
& & & & & & & & &Snapshot=t14.inf&,
& & & & & & & & &Mode=HTML&,
& & & & & & & & ITEMDATA,
& & & & & & & & &Name=exam.SCREEN_ID&, &Value={screen_id}&, ENDITEM,
& & & & & & & & &Name=exam.FILE_NUMBER&, &Value={file_number}&, ENDITEM,
& & & & & & & & &Name=exam.SUBJECT_ID&, &Value={subject_id}&, ENDITEM,
& & & & & & & & &Name=exam.PERSON_ID&, &Value={person_id}&, ENDITEM,
& & & & & & & & &Name=exam.BATCH_NUMBER&, &Value={batch_number}&, ENDITEM,
& & & & & & & & &Name=exam.REAL_EXAM_ID&, &Value={real_exam_id}&, ENDITEM,
& & & & & & & & &Name=exam.EXAM_ID&, &Value={exam_id}&, ENDITEM,
& & & & & & & & EXTRARES,
& & & & & & & & &Url=/tiandun/web/images/exam/exam-title-repeatx.jpg&, &Referer=http://10.71.0.175:7070/tiandun/web/exams/examTitle.jsp&, ENDITEM,
& & & & & & & & &Url=/tiandun/web/images/exam/exam-lable.jpg&, &Referer=http://10.71.0.175:7070/tiandun/web/exams/examContent.jsp&, ENDITEM,
& & & & & & & & &Url=/tiandun/web/images/exam/exam-help.jpg&, &Referer=http://10.71.0.175:7070/tiandun/web/exams/examInfo-bottom.jsp&, ENDITEM,
& & & & & & & & &Url=/tiandun/web/images/exam/exam-list.jpg&, &Referer=http://10.71.0.175:7070/tiandun/web/exams/examInfo-middle.jsp&, ENDITEM,
& & & & & & & & &Url=/tiandun/web/css/PIE.htc&, &Referer=&, ENDITEM,
& & & & & & & & LAST);
下面是我写的关联脚本
& && && &&&web_reg_save_param(&screen_id&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.SCREEN_ID\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& && && && && & lr_log_message(&screen_id=%s&,lr_eval_string(&{screen_id}&));
& & & & web_reg_save_param(&file_number&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.FILE_NUMBER\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& & & & web_reg_save_param(&subject_id&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.SUBJECT_ID\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& & & & web_reg_save_param(&person_id&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.PERSON_ID\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& & & & web_reg_save_param(&batch_number&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.BATCH_NUMBER\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& & & & web_reg_save_param(&real_exam_id&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.REAL_EXAM_ID\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
& & & & web_reg_save_param(&exam_id&,
& & & & & & & & &LB=\t\t\t\t\t\t&input type=\&hidden\& name=\&exam.EXAM_ID\& value=\&&,
& & & & & & & & &RB=\& /&\r\n&,
& & & & & & & & &Notfound=warning&,
& & & & & & & & LAST);
但是回放都是警告:Warning: The string 'screen_id' with parameter delimiters is not a parameter.
这是log里的数据
Action.c(55):& &&&\t\t\t\t\t\t\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-subject&&??????????&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-name&&????????2&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-id&&200022&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-session&&1003&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-seat&&0021&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&p class=&exam-date&&&/p&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.SCREEN_ID& value=&1003& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.FILE_NUMBER& value=&0021& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.SUBJECT_ID& value=&1601& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.PERSON_ID& value=&200022& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.BATCH_NUMBER& value=&1& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.REAL_EXAM_ID& value=&58& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t&input type=&hidden& name=&exam.EXAM_ID& value=&73& /&\r\n
Action.c(55):& &&&\t\t\t\t\t\t\r\n
该用户从未签到
你关联的概念完全是错误的,你希望发送动态内容,那么你提交中的参数应该是通过关联获得的,那么关联函数肯定是在你现在这个请求前面的请求返回的,你不能先用未定义的参数,然后在后面再写关联!
该用户从未签到
我发现了,在那天下午自己处理了,现在有个问题我不知道怎么处理:
Action.c(130): t=9865ms: 1-byte chunked response body for &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead& (RelFrameId=1, Internal ID=19)
Action.c(130):& &&&1
Action.c(130): t=9870ms: Request done &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead&&&& & & & [MsgId: MMSG-26000]
这段日志,我希望把那个1关联,这个应该怎么写,我是这么写的,但是取不到,帮忙看下,刚刚开始学loadrunner
web_reg_save_param(&exam_login_flig&,
& & & & & & & & &LB=byte chunked response body for \&http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead\& (RelFrameId=1, Internal ID=&,
& & & & & & & & &RB=t=&,
& && &&&&SaveOffset=7&,
& & & & & & & & &NotFound=warning&,
& & & & & & & & LAST);
该用户从未签到
看代码给我的感觉你是返回了1啊,关联没啥错把,你现在写的关联是彻底错的!
该用户从未签到
&&应该怎么写啊?
该用户从未签到
& & Action.c(130): t=9865ms: 1-byte chunked response body for &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead& (RelFrameId=1, Internal ID=19)
Action.c(130):& &&&1
Action.c(130): t=9870ms: Request done &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead&& && && & [MsgId: MMSG-26000]
云大大能告诉我怎么把这个1给取出来做关联吗??谢谢
该用户从未签到
你在Action.c(130):& &&&1不是已经得到1了么
启动日志看一下参数值对不对就行了啊
该用户从未签到
本帖最后由 gao9960 于
09:57 编辑
& & 这个以是这段代码获取的
& & web_custom_request(&examAction!examRead&,
& && && && && & &URL=http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead&,
& && && && && & &Method=POST&,
& && && && && & &Resource=0&,
& && && && && & &RecContentType=text/html&,
& && && && && & &Referer=http://10.71.0.175:7070/tiandun/web/jsp/personal/examAction!examLogin&,
& && && && && & &Snapshot=t15.inf&,
& && && && && & &Mode=HTML&,
& && && && && & &EncType=&,
& && && && && & LAST);
我现在是想把它获得的1取出来当做一个判断的条件,但是1的前后什么都没有,用web_reg_save_param这个函数我不会取啊
这是这段代码的图
这图是这段代码获取到0的时候,日志是这样的
Action.c(130): t=9865ms: 1-byte chunked response body for &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead& (RelFrameId=1, Internal ID=19)
Action.c(130):& &&&0
Action.c(130): t=9870ms: Request done &http://10.71.0.175:7070/tiandun/web/jsp/personal/web/jsp/personal/examAction!examRead&& && && & [MsgId: MMSG-26000]
我怎么把这个独立一行的0取出来。
本帖子中包含更多资源
才可以下载或查看,没有帐号?
站长推荐 /4
小伙伴们踊跃闯关,赢取测试积点,换取豪礼,还等什么,赶快行动吧~
赏金公告:悬赏任务已,小伙伴们赶紧行动起来,赚取,去积点商城获取奖励吧!
了解自己的心里圈,学习不同的内容,让自己由内而外强大起来!
8年测试经验,有移动互联网等多个大型平台测试,最新项目大型移动电商平台测试经验。擅长:测试管理、项目管理、测试职业发展探索、测试方法论、持续集成、自动化测试、敏捷测试实践者。
Powered by求高手帮我改个按键精灵的脚本_百度知道
求高手帮我改个按键精灵的脚本
1)dx=XYArray(0)dy=XYArray(1)Delay 50Rem aPlugin c1=BkgndColor.LeftClick(hwnd,0
Delay 1000
MoveTo 141,141-http,ffd2a1,-dy)
Plugin Bkgnd,&quot,0
MoveTo 268.GetClientRect(hwnd)XYArray=Split(s,421-dy)
Plugin Window,375-dx.LeftClick(hwnd,639-dx,438-dy)
Plugin Bkgnd,如果不打开,120-dx,333Delay 500KeyPress 13我写了个脚本,然后根据几个点找色,str1)Else
Goto aEndIf Rem cDelay 1000Plugin Bkgnd,438-dy)
Plugin Bkgnd.LeftClick(hwnd:&#47,在前台操作成功了,是打开某网页,375-dx,哪位帮我看看是怎么回事.LeftClick(http,421:&#47,不胜感激;暂时保密&quot.LeftClick(hwnd,333-dy)Delay 500Plugin Bkgnd,429,438-dy)Else
Goto cEndIf Delay 15000Plugin Bkgnd,自己学习试着改后台.KeyPress(|&quot,1Delay 500KeyPress 13,看这个点颜色找到了.GetKeyFocusWnd()Delay 1000Plugin s=Window.KeyPress(/)Rem aIfColor 375,再发后台的~~~~UserVar str1=UserVar yanshi= 7000 请输入时间VBSCall RunApp(&quot,375-dx,421Delay 500LeftClick 1Delay yanshiIfColor 120.MoveTo(hwnd,421-dy)Delay yanshiPlugin c2=BkgndColor,429-dx)If c2=2954e8
Delay 1000
Plugin B&#47,421-dy)
Plugin Bkgnd,141-dx,再点击一些东西.GetPixelColor(hwnd,141-dx,375-,13)Delay 500Plugin B暂时保密&quot,代表网页打开了,可是打开网页后就不动了,-1,438
LeftClick 1
LeftClick 1
LeftClick 1Else
Goto cEndIf Delay 15000MoveTo 639,我先发出前台的正常版本,421-dy)If c1=ffd2a1
Plugin Bkgnd,就循环等着打开.SendString(hwnd.LeftClick()Dim hwndPlugin Hwnd = Window,415
LeftClick 1
SayString str1Else
Goto aEndIf Rem cDelay 1000MoveTo 375,141-dx.LeftClick(hwnd.GetPixelColor(hwnd,1Delay 500Goto c再给大家看看我自己学着改的后台UserVar str1=UserVar yanshi= 7000 VBSCall RunApp(&quot
提问者采纳
按键后台找色和鼠标键盘等这些后台功能不强大!但用在网页的话。这你自己测试一下!所以。二,那么可能就是你鼠标点击的坐标计算有误,如果找色和鼠标正常解决了就全解决了!注意后台屏幕和窗口的坐标是有区别的,如果用在exe程序上是一堆狗屎,建议你使用一下,不过我未使用过不知道能不能后台,由于我不知道你什么网站、后台颜色未找到,仅提供一下你参考,因为也有一部分网站是屏蔽了后台的!
新版的按键精灵中。前一个朋友说得对,它倒是可以,你自己要测试一下这两点:一,很垃圾的、如果后台颜色值找到,有专门为网页设置这方面的插件即wed插件,未找到颜色可能性不大你这个问题有几处原因的,但并不排除,在这里顺便提一下
其他类似问题
61人觉得有用
为您推荐:
按键精灵的相关知识
其他1条回答
后台键盘可以实现,精灵在后台鼠标操作并不是很强大。我自己也请教过几个高手。我选择放弃了,鼠标总是实现不了。放弃还是继续研究你自己选择吧怎么说呢
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁}

我要回帖

更多关于 求梦三脚本 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信