Created
January 27, 2017 09:14
-
-
Save db93n2/0039e63b76254b466590a1414681f8e6 to your computer and use it in GitHub Desktop.
(autohotkey) - use the enter key in lightshot to save a screenshot to the last used folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifWinActive ahk_exe Lightshot.exe | |
enter:: | |
winGetTitle, window_title, ahk_exe Lightshot.exe | |
if inStr(window_title, "save") | |
send {enter} | |
else send ^{s} | |
return | |
#ifWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment