—
本帖被 幻想. 执行取消锁定操作(2009-01-19)
—
命令说明
Rem......Goto标记和跳转到标记
格式:Rem [标记名称]......Goto [标记名称]
解释:创建一个标记和跳转到某个标记
命令例子
General]
Description=标记和跳转到标记
BeginHotkey=121
BeginHotkeyMod=0
RunOnce=1
Enable=1
[Repeat]
Type=0
Number=1
[CallBack]
OnSetup=
[Comment]
Content=
[Script]
Rem start
//创建一个名为start的标记
Delay 1000
//延时1000毫秒
KeyPress 65 1
//按键"a"一次
Goto start
//跳转到名为start的标记