This is AutoHotkey it's very easy to use just right click any image and click copy after that press your right mouse button again to trigger it.
It will timeout very fast "300 ms" to prevent accidental triggers.
You can remove the ; before run if you want it to fire up Photoshop for a diff vers change the CC to CS6, CS5, and so on. It's not really of any use to myself since I've not turned off Photoshop in months.
#Persistent
#SingleInstance Force
#InstallMouseHook
#NoTrayIcon ; Put a ; in the front if you want the icon to show up in your tray.
CoordMode, Mouse, Screen
SetTimer, RTT, 3000 ; The tooltip when triggered. "3 seconds"
Return
RTT:
Tooltip
Return
OnClipboardChange:
KeyWait, RButton, D T.3 ; Trigger timeout delay 1 = 1 second current is .3 second.
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
Open with Photoshop for any browser.
This is AutoHotkey it's very easy to use just right click any image and click copy after that press...
&nsbp;
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users