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
設定を無効にして使用しました。