—
本帖被 幻想. 执行取消锁定操作(2009-01-19)
—
命令说明:
格式
VBSCall Call RunApp(要运行的[路径]程序或者文件)
如果程序路径不是变量,别忘了加双引号
利用这个功能,您可以很方便的启动一个本地的程序,或者打开一个文件
命令例子1:
[General]
Description=运行的语句
BeginHotkey=121
BeginHotkeyMod=0
RunOnce=1
Enable=1
[Repeat]
Type=0
Number=1
[CallBack]
OnSetup=
[Comment]
Content=
[Script]
//运行C盘->程序文件夹下的->腾讯TT软件 VBSCall RunApp("C:\Progra~1\Tencent\TT\TTraveler.exe")
命令例子2:
[General]
Description=运行的语句
BeginHotkey=121
BeginHotkeyMod=0
RunOnce=1
Enable=1
[Repeat]
Type=0
Number=1
[CallBack]
OnSetup=
[Comment]
Content=
[Script]
//启动Windows记事本程序(系统自带的程序无需写路径) VBSCall Call RunApp("notepad.exe")
命令例子3:
[General]
Description=运行的语句
BeginHotkey=121
BeginHotkeyMod=0
RunOnce=1
Enable=1
[Repeat]
Type=0
Number=1
[CallBack]
OnSetup=
[Comment]
Content=
[Script]
//给ex赋路径值 VBS ex="C:\Progra~1\Tencent\TT\TTraveler.exe"
//运行C盘->程序文件夹下的->腾讯TT软件 VBSCall Call RunApp(ex)
命令例子4:
[General]
Description=运行的语句
BeginHotkey=121
BeginHotkeyMod=0
RunOnce=1
Enable=1
[Repeat]
Type=0
Number=1
[CallBack]
OnSetup=
[Comment]
Content=
[Script]
//给ex赋路径值 VBS ex="
http://bbs.vrbrothers.com"
//打开兄弟论坛主页 VBSCall Call RunApp(ex)