PS Actions

Anyone, especially newbies, asking for help with Photoshop Scripting and Photoshop Automation - as opposed to those contributing to discussion about an aspect of Photoshop Scripting

Moderators: Tom, Kukurykus

Akhtar Ahmed

PS Actions

Post by Akhtar Ahmed »

can i execute Photoshop actions without loading them to action Platte ?
or any way to run PS action from vb,c java programs without loading it in action Platte .

Professional AI Audio Generation within Adobe Premiere Pro - Download Free Plugin here

xbytor

PS Actions

Post by xbytor »

Yes, you can do this but it would require more than a little non-simple code.

An much easier approach is to write some code that loads the action set, runs the desired action, then deletes the action set.

The code that would help you in either case is in xtools.
Akhtar Ahmed

PS Actions

Post by Akhtar Ahmed »

Thank you very much for the reply. it is very helpful but it would more if you can give some clue or logic about 'non simple' code i have good knowledge of programming and i can understand scripts.

thanks in adv.
xbytor

PS Actions

Post by xbytor »

Take a look at xtools/xapps/ActionEvalDemo.jsx. It does basically what you want. You would run it in non-interactive mode.

It can be boiled down to one line:

Code: Select allActionEval.runAction("~/Desktop/XActions.atn", "Alert");

I'd forgotten that I had written this.
xbytor

PS Actions

Post by xbytor »

BTW, the non-simple code that I was referring to is in xtools/xlib/ActionEval.jsx if you're interested. I haven't used or tested this in years so I have no idea what shape it's in.
Akhtar Ahmed

PS Actions

Post by Akhtar Ahmed »

Thank u so much for the support.
I will check it and reply.
yr 'Xtools' is ultimate tool !