PRINTSCREENAUTOHOTKEY로 키보드 버튼을 눌렀을 때 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
사용했습니다.