我试图PRINTSCREEN用AUTOHOTKEY 击键盘按钮时运行Windows 7狙击工具。
到目前为止,我一直没有成功。这是我拥有的AutoHotKey脚本。
我已经试过了
PRINTSCREEN::Run, c:\windows\system32\SnippingTool.exe
还有这个
PRINTSCREEN::Run, SnippingTool.exe
还有这个
PRINTSCREEN::Run, SnippingTool
所有这些给了我一个错误,基本上说它找不到文件,但是文件路径似乎是正确的,我可以将其复制粘贴到窗口中并打开截图工具,为什么它不起作用?
这是我的AHK文件的完整代码...
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win7
; Author: Jason Davis <friendproject@>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
/*
PRINTSCREEN = Will run Windows 7 snipping tool
*/
PRINTSCREEN::Run, c:\windows\system32\SnippingTool.exe
return
%A_WinDir%
代替%windir%
,#noEnv
禁用了设置。