好友
阅读权限20
听众
最后登录1970-1-1
|
100吾爱币
一下是我的脚本,我想实现脚本一次复制表格某一列第一行到最后一行的数据,粘贴在网页文本框内。直到表格内容全部填完。
求大佬指点一下 悬赏不够我再加
KeyPress "Tab", 1
Delay 200
KeyPress "Enter", 1
Delay 200
KeyPress "Tab", 15
Delay 200
KeyDown 17, 1
KeyPress 86, 1
KeyUp 17, 1
Delay 200
KeyPress "Tab", 3
Delay 200
KeyPress "Enter", 1
Delay 500
FindPic 280,272,625,858,"Attachment:\选择.bmp",0.7,intX,intY
If intX> 0 And intY> 0 Then
MoveTo intX+10, intY+10
End If
Delay 200
LeftClick 1
Delay 500
FindPic 360,9,1298,543,"Attachment:\调阅模板.bmp",0.9,intX,intY
If intX> 0 And intY> 0 Then
MoveTo intX+10, intY+10
End If
Delay 500
LeftClick 1
Delay 2000
FindPic 884,0,1917,749,"Attachment:\控烟.bmp",0.9,intX,intY
If intX> 0 And intY> 0 Then
MoveTo intX+20, intY+20
End If
Delay 200
LeftClick 1
Delay 500
FindPic 382,7,1145,378,"Attachment:\保存.bmp",0.9,intX,intY
If intX> 0 And intY> 0 Then
MoveTo intX+10, intY+10
End If
Delay 200
LeftClick 1
Delay 200
KeyPress "Enter", 1 |
最佳答案
查看完整内容
我没看懂你的代码,希望你能看下面的注释再做出进一步解释:
[mw_shl_code=asm,true]// 试图移动到Q2?
Delay 1000 // 因为松开设置的脚本启动快捷键需要时间,建议在开头加上点延迟
KeyPress "Tab", 1 // 好像这个按键没有意义
Delay 200
KeyPress "Enter", 1// 这里按下enter会回到A列2行而不是B2单元格
Delay 200
KeyPress "Tab", 15 // 因为前面的enter,这里实际只能移动到P列
Delay 200
// 按Ctrl + V?你前面也没 ...
|