Авто-снайпер со снайперским инструментом Windows 8

8404
Giorgio

Я хотел бы использовать инструмент Windows Snipping по простому вопросу: когда я запускаю программу, я хочу, чтобы она автоматически запускала прямоугольный фрагмент .

Я использую Windows 8. Когда я использовал ту же программу в Windows 7, я мог это сделать.

8

4 ответа на вопрос

4
Jay

I used a simple AutoHotkey script to emulate what the Windows 7 version did.

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

Note #s (Win + s) shortcut can be anything you choose. Like all AHK scripts you want running all the time, add it to the startup folder.

Я попробовал это (Win10), и он запустит снайперский инструмент, но он неактивен. Как только я щелкаю окно, чтобы сделать его активным, оно посылает комбинацию клавиш Control + PrintScreen, но это не то же самое, что было раньше в Win7. Я добавил: `WinWait, ahk_class Microsoft-Windows-Tablet-SnipperToolbar` и` WinActivate, ahk_class Microsoft-Windows-Tablet-SnipperToolbar` и, кажется, теперь работает так, как я искал; Я мог бы удалить вызов WinWaitActive, но я просто оставил его. Jens Bodal 8 лет назад 0
3
magicandre1981

This was changed in Windows 8:

MSFT answered it here on channel9:

Defrag: Deprecated HW, Deleted Partition, Disabling Right Click Animation http://channel9.msdn.com/Shows/The-Defrag-Show/Defrag-Deprecated-HW-Deleted-Partition-Disabling-Right-Click-Animation

13:50- Is there a way to make Snipping Tool in Win8 active on launch.

MSFT says it was changed on customers feedback.

Спасибо, что отвечает на мой вопрос 100%! :) Теперь мне нужно скачать еще один инструмент для снятия ударов с этой функцией. Giorgio 11 лет назад 1
если вы используете autohotkey, вы все равно можете использовать его с взломанным мною Jay 11 лет назад 0
1
Nick B

I wanted exactly what the OP did and the above AHK script just grabs the whole window in a screenshot. This AHK script binds win+s to start the snipping tool and automatically starts a rectangular snip on launch...

#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 Send Send } return 
0
Jay

As an alternative to the answers here, you could use the FOSS Greenshot instead and map a particular shortcut to region snipping.

Похожие вопросы