So I have a personal website, and I have a button that I want to use to open photoshop and run a script for me. How do I do this?
So I have a personal website, and I have a button that I want to use to open photoshop and run a script for me. How do I do this?
3
Answers
This has been up for awhile, but if the solution to this in node is to use a child_process.
you can
npm install child_process
and the code to run executables would be to do
you can do a lot of cool things afterwards like event handlers
You can read the Docs here: https://nodejs.org/api/child_process.html
It is not possible. It would pose a huge security risk to allow javascript to open programs on client side.
maybe this
Code will open image in photoshop with the help of javascript. You just need to place your image file into photoshop->sample folder nothing more than that and you done with it.