I have this idea, taking Photoshop events recorded and converted to Javascript code using Adobe's script listener and then triggering this Javascript code using Autohotkey.
For example, recording an action that will trigger free transform
in Photoshop and then triggering it via Autohotkey.
a::
Run, SomeJavaScript.jsx, C:\Users\Me\Documents\Adobe Scripts\
return
I think this will prove to be slow. as it is accesing a file on a HDD. Is there a way to have the .JS code to be "live" so that it is always ready to be executed by Autohotkey ?
I am new to Javascript within the context of Photoshop, so I am just looking to be pointed in the right direction to learn more.