‘按键精灵’的组合键 代码 求高手

来源:百度知道 编辑:UC知道 时间:2024/06/28 12:59:08
求高手指教 按键精灵 按 “回车” 再按 方向键 “下” 再按 “回车”
这样一直循环 求 高手 发个代码 过来

KeyPress 13 1

Delay 100

KeyPress 40 1

Delay 100

在右边的设置里设置运行到按终止键为止。

Rem H
//标记用于无限循环
KeyPress 13,1
//按回车
KeyPress 40,1
//按下
KeyPress 13,1
//按回车
Goto H
//回到标记

Delay 1000
Rem cf
Delay 200
KeyPress 13,1
Delay 200
KeyPress 40,1
Delay 200
KeyPress 13,1
Delay 200
Goto cf
Delay 1000