Not sure really on the best place to post since it's autohotkey.
Directly after you right click and copy a image press your right mouse button to send it to Photoshop.
It will time out fast to prevent accidental triggers. "300ms"
Code: Select all;Fancy NFO - Not gonna happen, I'm lazy, sorry..
#Persistent
#SingleInstance Force
#InstallMouseHook
#NoTrayIcon
CoordMode, Mouse, Screen
SetTimer, RTT, 3000
Return
RTT:
Tooltip
Return
OnClipboardChange:
KeyWait, RButton, D T.3 ; Timeout delay.
If ErrorLevel
{
return
}
else
{
Tooltip, Sending to Photoshop, %RTT%
;Run, %a_ProgramFiles%\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe,, max
}
WinActivate, ahk_class Photoshop
If WinActive ahk_class Photoshop
{
Return
}
else
{
blockinput, on
Send ^n
Send {Enter}
Send ^v
blockinput, off
}
Return