与此人有同样的问题,但我需要一个更好的答案:)油漆非常适合我的需求;99% 的时间里我不需要任何其他东西。
按下“PrtSc”按钮时如何自动将打印屏幕粘贴到 MS Paint 上? http://answers.yahoo.com/question/index?qid=20071218032823AAmxWTu
我正在使用 Windows Server 2008 R2 和 Windows 7。
编辑:以下自动热键脚本对我有用:
~Printscreen::
!~Printscreen::
IfWinExist Untitled - Paint
{
WinActivate, Untitled - Paint
WinWaitActive, Untitled - Paint
}
else
{
Run Mspaint
Sleep 10
WinActivate, Untitled - Paint
WinWaitActive, Untitled - Paint
}
{
Send ^v
Send ^+x
return
}
答案1
自动热键使用以下脚本:
; print screen pastes into MS Paint
~Printscreen::
Run Mspaint
WinWaitActive, Untitled - Paint
{
Send ^v
}
我在 64 位 Vista Business 上进行了成功测试,但您的情况可能会有所不同。
答案2
您可能会考虑使用 Windows 内置的截图工具 - 如果您不想,它还有一个额外的好处,就是您不需要截取全屏/窗口。它实际上并不比手动打开 Paint 需要更多点击,但我觉得它更方便。
答案3
我相信 CTRL+V会是最好的方法,将屏幕粘贴到 MS Paint 中。
答案4
打开一个小的画图窗口甚至自动返回上一个窗口怎么样?或者也许可以将打印屏幕粘贴到 MS 画图而无需切换窗口?