Skip to content

Instantly share code, notes, and snippets.

@peteristhegreat
Created March 31, 2021 15:26
Show Gist options
  • Save peteristhegreat/3024eed3633aeada1585aeb093a3ef84 to your computer and use it in GitHub Desktop.
Save peteristhegreat/3024eed3633aeada1585aeb093a3ef84 to your computer and use it in GitHub Desktop.
Copy from one window, switch windows, paste in another, AHK, AutoHotKey
#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