What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Open with Photoshop for any browser.


XilE

Member
Messages
6
Likes
0
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. :redface:


#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
 

Top