I wrote about AUTOHOTKEY some weeks ago, but ist so super awsome - today I did create a shortcut for opening VERVE in Photoshop
Thats just my small
script
/*
Verve - WIN + F10
*/
#F10::
Run, "C:\Program Files\Sonstige Software\verve_painter.exe"
return
# => means WINDOWS KEY, F10 Function key, Run means start - and the folder hmm, just bum
some functions in AutohotkeHotkey I createt also in this way
/*
Neigen - Bearbeiten per WIN & 3
*/
#3::
MouseGetPos Xpos, Ypos
MouseMove, 116, 12, 5
Click
MouseMove, 116, 368, 5
Click
MouseMove, 450, 368, 5
MouseMove, 450, 432, 5
Click
MouseMove %Xpos%, %Ypos%, 0
return
the positions of the mouse I get from the AHK-ACTIVE-WINDOW(Spy) this tool is a part of AHK, but important, it runs only if the window is 100% maximized and on a default view or an your saved view and on the same screenpanelsize.
it goes to the Photoshop-menue 'Bearbeiten' ... => is this edit? and after that until transform/skew and click that automatic, and after that it returns to the same mouse position, maybe a bit clumsy, but it works
