我希望我的脚本能够在按下 PrintScreen 按钮后收听我将输入的字符串。例如,如果我按下 PrintScreen 按钮并随后键入“paint”,它应该会打开 MSPaint。但是,如果我输入“photoshop”,它应该会打开 Photoshop。这可能吗?
这是我的尝试,完全失败(顺便说一下,我是 AHK 的新手..)
~PrintScreen::paint::
Run, MSPaint
WinWaitActive, Untitled - Paint
Send, ^v
return
~PrintScreen::photoshop::
Run, Photoshop
WinWaitActive, Adobe Photoshop CS6
Send, ^v
return