将一下代码复制、黏贴为txt文件,放到按键精灵的script文件夹中,就行了:
代码:
[General]
Description=1234循环直至终止
BeginHotkey=65
BeginHotkeyMod=0
PauseHotkey=83
PauseHotkeyMod=0
StopHotkey=68
StopHotkeyMod=0
RunOnce=1
EnableWindow=
Enable=1
AutoRun=0
[Repeat]
Type=1
Number=1
[Relative]
SetupOCXFile=
[Comment]
Content=
[Script]
KeyPress 49
Delay 1000
KeyPress 50
Delay 32000
KeyPress 51
Delay 1000
KeyPress 52
打开按键精灵程序后,按A开始执行,一直循环,直至按D终止。
另外,我觉得是不是在4后面再加上一个delay呢……建议
Plugin ck=Window.GetKeyFocusWnd()
Delay 1000
Rem a
Plugin Window.SendKeyDown(ck,49)
Delay 1000
Plugin Window.SendKeyDown(ck,50)
Delay 32000
Plugin Window.SendKeyDown(ck,51)
Delay 1000
Plugin Window.SendKeyDown(ck,52)
Delay 1000
//上面的是4与1的间隔时间,暂时写着是1秒(1000毫秒),你自己可以修改。
Goto a
Plugin jb=Window.GetKeyFocusWnd()
///得到窗口 句柄
Delay 1000
///延时1秒
Rem huei
//标记 HUEI
Plugin Window.SendKeyDown(jb,49)
//按键1
Delay 1000
//延时1秒
Plugin Window.SendKeyDown(jb,50)
//按键2
Delay 1000
//延时1秒
Plugin Window.SendKeyDown(jb,51)
//按键3
Delay 1000
//延时1秒
Plugin Window.SendKeyDown(jb,52)
//按键4
Delay 1000
//延时1秒
Goto huei
//回到 标记 HUEI