AUTOHOTKEY Scriptings

Hey dear guys, I wrote today an AUTOHOTKEY Script - I use this tool since 2 months and I'm not very good in scripting/programing
... but AUTOHOTKEY is so cool too ... and I wrote a small script that works between
PHOTOSHOP and VERVE
I'm not very good in scripting - but U will have fun ...
If your computer is fast enough, you can delete the sleep-timers or set it lower

PHOTOSHOP and VERVE
- Code:
/*
PNG Importing between PHOTOSHOP and VERVE, with [WINDOWS] + [V]
it is important that VERVE and PHOTOSHOP use the same folder for png exchange
*/
/*
PNG Importing between PHOTOSHOP and VERVE, with [RIGHTWINDOWS] + [V]
it is important that VERVE and PHOTOSHOP use the same folder for png exchange
*/
>#V::
send ^+s ;this is the shortcut in Photoshop for "Save as" - CONTROL + SHIFT + S
sleep 300
send temptoverve.png ; creates in Photoshop the temptoverve.png in one of your last folders, e.g. desktop
*/
sleep 300
send {enter}
sleep 300
send {enter}
sleep 300
send {enter}
msgbox, wait until PNG is saved
if WinExist("ahk_exe Verve_painter.exe")
WinActivate, ahk_exe Verve_painter.exe ; it changes to the VerveWindows if it is active
else
Run, "C:\Program Files\Sonstige Software\verve_painter.exe" ; it runs Verve
sleep 800
send o ; send o -> load the temptoverve.png file from your desktop
sleep 800
send temptoverve.png
send {enter}
return
I'm not very good in scripting - but U will have fun ...
If your computer is fast enough, you can delete the sleep-timers or set it lower