Created
March 31, 2021 15:26
-
-
Save peteristhegreat/3024eed3633aeada1585aeb093a3ef84 to your computer and use it in GitHub Desktop.
Copy from one window, switch windows, paste in another, AHK, AutoHotKey
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
#NoEnv | |
#SingleInstance | |
SetTitleMatchMode,2 | |
!^a:: | |
send ^{c} | |
WinActivate IrfanView | |
; WinWaitActivate ; doesn't work? | |
sleep 1000 | |
send ^{v} | |
send ^{s} | |
send {enter} | |
WinActivate Adobe | |
; WinWaitActivate ; doesn't work? | |
sleep 1000 | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment