I work in photoshop and jpeg files.

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
shamsudeen
Posts: 64
Joined: 05 May 2012 06:58

I work in photoshop and jpeg files.

Post 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

highend
Posts: 14956
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: I work in photoshop and jpeg files.

Post 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
One of my scripts helped you out? Please donate via Paypal

shamsudeen
Posts: 64
Joined: 05 May 2012 06:58

Re: I work in photoshop and jpeg files.

Post 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

highend
Posts: 14956
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: I work in photoshop and jpeg files.

Post 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.
One of my scripts helped you out? Please donate via Paypal

shamsudeen
Posts: 64
Joined: 05 May 2012 06:58

Re: I work in photoshop and jpeg files.

Post 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 .

Post Reply