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 .
PS Actions
-
xbytor
PS Actions
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.
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
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.
thanks in adv.
-
xbytor
PS Actions
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.
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
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
Thank u so much for the support.
I will check it and reply.
yr 'Xtools' is ultimate tool !
I will check it and reply.
yr 'Xtools' is ultimate tool !