用自己指定的模板创建ahk脚本

在windows右键弹出菜单的新建菜单中加入“AutoHotkey 脚本”
 
1.首先写好模板文件,随便保存在一个地方,比如我是“X:\AutoHotkey\AutoHotkey\SHELLNEW\Template.ahk”;

2.打开注册表(regedit),找到 [HKEY_CLASSES_ROOT] -> [.ahk] (没有的话,自己新建项.ahk);

3.在 [.ahk] 下新建项 [ShellNew] (已经有的话就删掉重建);

4.在 [ShellNew] 下新建 字符串值 ,名称为 FileName ,键值为模板文件的绝对路径,比如我的是 X:\AutoHotkey\AutoHotkey\SHELLNEW\Template.ahk ;

 


好啦,在右键->新建菜单中就会出现"AutoHotkey 脚本"项,新建以后还会自动将模板内容复制过来,是不是很爽?

附我的注册表导出文件:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.ahk\ShellNew]
"FileName"="X:\\AutoHotkey\\AutoHotkey\\SHELLNEW\\Template.ahk"

 

Template.ahk文件:

/*
AutoHotkey 版本: 
操作系统: Windows XP/Vista/7 
作者: sunwind <[email protected]> 
博客: http://blog.csdn.net/liuyukuan
脚本说明:
脚本版本: v1.0
*/
#NoEnv
#SingleInstance
SendMode Input
SetWorkingDir %A_ScriptDir%
; [ALT]+[R]: 重启程序
!r::
Reload ; 重启 -- DEBUG: optional
Return

; [ALT]+[ESC]: 退出程序
!ESC::
Suspend ; exempt from suspension -- DEBUG: optional
ExitApp



 

你可能感兴趣的:(用自己指定的模板创建ahk脚本)