Page 1 of 1

I work in photoshop and jpeg files.

Posted: 19 Dec 2012 11:49
by shamsudeen
Hi all , I work in photoshop and jpeg files , I open jpeg file
With user user defined command in open with photoshop then I mark it
With blue color label , this is my process, I need to do the two things at once
Ie. when I open with photoshop it's should automatically color the jpeg file with red label color,
I don't how to do that. Can you guys help me?

Shamsudeen S

Re: I work in photoshop and jpeg files.

Posted: 19 Dec 2012 13:54
by highend

Code: Select all

$photoshop = "C:\Program Files\Adobe\Photoshop\Photoshop.exe";
    run """$photoshop ""<curitem>""";
    tag "Red";
Edit the path for your Photoshop.exe

Re: I work in photoshop and jpeg files.

Posted: 19 Dec 2012 19:44
by shamsudeen
highend wrote:

Code: Select all

$photoshop = "C:\Program Files\Adobe\Photoshop\Photoshop.exe";
    run """$photoshop ""<curitem>""";
    tag "Red";
Edit the path for your Photoshop.exe
Where to put this code?

Thanks
Shamsudeen S

Re: I work in photoshop and jpeg files.

Posted: 19 Dec 2012 20:23
by highend
You could create a new command in your user defined commands under "Run Script" and paste (and reformat) the script to one line or under "Load Script File" and in that case you have to paste my code in your favorite editor and save it under an appropriate name in your script folder (don't forget the .xys extension). Ofc you have to click the "Edit..." button and point it to your newly saved script.

Re: I work in photoshop and jpeg files.

Posted: 20 Dec 2012 08:55
by shamsudeen
highend wrote:You could create a new command in your user defined commands under "Run Script" and paste (and reformat) the script to one line or under "Load Script File" and in that case you have to paste my code in your favorite editor and save it under an appropriate name in your script folder (don't forget the .xys extension). Ofc you have to click the "Edit..." button and point it to your newly saved script.
Thank you Brother .