How can I map the print key to take a Skitch for Windows Desktop screenshot on Windows 10?

0

Is there any way to configure Skitch for Windows Desktop to take a screenshot when I press the print key on Windows 10? It's okay if I have to use autohotkey.

Christian

Posted 2019-01-23T18:05:44.913

Reputation: 1 750

Answers

1

Try this autohotkey script to take a fullscreen screenshot:

#If ProcessExist("Skitch.exe")

    PrintScreen:: Send {Ctrl Down}{Shift Down}6{Shift Up}{Ctrl Up} ; Ctrl+Shift+6

#If

ProcessExist(name){
    Process, Exist, %name%
    return Errorlevel
}

user3419297

Posted 2019-01-23T18:05:44.913

Reputation: 2 055