使用截屏工具Windows 8自动截屏


8

我想在一个简单的事情中使用Windows Snipping工具:启动程序时,我希望它自动启动矩形snip

我正在使用Windows8。当我在Windows 7中使用相同的程序时,我可以做到。

Answers:


3

在Windows 8中已更改:

MSFT在第9频道对此进行了回答:

碎片整理:已弃用的硬件,已删除的分区,禁用右键单击动画 http://channel9.msdn.com/Shows/The-Defrag-Show/Defrag-Deprecated-HW-Deleted-Partition-Disabling-Right-Click-Animation

13 :50-有没有一种方法可以使Win8中的Snipping Tool在启动时激活。

MSFT表示已根据客户反馈进行了更改。


1
谢谢你回答我的问题100%!:)现在,我必须下载另一个具有此功能的截图工具。
Giorgio

如果您使用autohotkey,您仍然可以将其与我发布的hack一起使用
Jay Wick

4

我使用一个简单的AutoHotkey脚本来模拟Windows 7版本的功能。

#s::
Run, "C:\windows\system32\SnippingTool.exe"
WinWaitActive, ahk_class Microsoft-Windows-Tablet-SnipperToolbar
{
    send ^{PrintScreen}
}
return

注意#sWin+ s)快捷键可以是您选择的任何内容。像您要一直运行的所有AHK脚本一样,将其添加到启动文件夹中。


我尝试了此操作(Win10),它将启动截图工具,但它开始处于非活动状态。当我单击该窗口使其处于活动状态时,它将发送Control + PrintScreen键组合,但这与Win7中以前的工作方式不同。我补充说:WinWait, ahk_class Microsoft-Windows-Tablet-SnipperToolbar并且WinActivate, ahk_class Microsoft-Windows-Tablet-SnipperToolbar 似乎现在可以按照我的期望工作;我大概可以删除WinWaitActive电话,但我刚刚离开它英寸
延Bodal

1

我想确切地了解OP的功能,并且上面的AHK脚本仅在屏幕截图中捕获了整个窗口。此AHK脚本绑定win + s以启动截图工具,并在启动时自动启动矩形截图...

#s::
Run, "C:\windows\system32\SnippingTool.exe"
WinWait, ahk_class Microsoft-Windows-Tablet-SnipperToolbar
WinActivate, ahk_class Microsoft-Windows-Tablet-SnipperToolbar
WinWaitActive, ahk_class Microsoft-Windows-Tablet-SnipperToolbar
{
    Send !n
    Send {Down}
    Send {Down}
    Send {Enter}


}
return


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.