Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to reveal file in Finder?

Community Beginner ,
Sep 06, 2022 Sep 06, 2022

Since Adobe stopped complying with MacOS HIGs, there now appears to be no obvious way to reveal a file in the Finder - can anyone point me at one?

TOPICS
macOS
1.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
LEGEND ,
Sep 06, 2022 Sep 06, 2022

The proxy icon is still supported and works, this is how I backup a finished PSD- drag the proxy to my backup folder once the file is saved. If you command-click, it should show the file path.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

@Technomad - Do you simply wish to open the containing folder of an open file in Photoshop with a script? Or do you also want to have the file highlighted/selected as well?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

@Stephen Marsh 

This is what we are looking for when we Cmd+Click the title bar. Clicking any folder goes to that folder in Finder in all applications — except now, not in Photoshop. The file gets selected so we can delete, move, copy, rename, et cetera, while the file is still open.

 

janee_0-1662475807825.png

 

Jane

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

@jane-e 

 

Thanks, I don't think of/use the term "HIG", so I wasn't sure... I think that this has come up before.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 06, 2022 Sep 06, 2022

Sorry, "Human Interface Guidelines". In other words, everything that Adobe doesn't follow…

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

I don't think that I have looked at such docs since OS7 or 8!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

@Technomad 

 

I just tested and cannot Cmd+Click the title bar to see the path and go to the folder. I can still do it in Illustrator, InDesign, and Acrobat. I hope this is a bug that the engineers will fix and that it was not done on purpose.

 

Jane

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 06, 2022 Sep 06, 2022

It appears that the issue is that the latest updates to CC have switched on the bloody useless Adobe Cloud by default, saves documents there, but doesn't actually have the courtesy to tell you, unless you happen to notice that the file extension is now .psdc - so the usual CMD-click on the title bar does not work under those circumstances. 

 

Now very much on a mission to get Adobe and all its works out of my and my company's life.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

@Technomad 

 

You can switch that in PS menun > Preferences > File Handling

janee_0-1662479817855.png

 

And thank you for mentioning that, as I didn't realize I had a Cloud document earlier! It works, but you have to drag the title bar down to make the window float, then drag it up again to consolidate it to tabs.

(or use Window menu > Arrange)

janee_1-1662479920033.png

 

Jane

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

With document tabs one can right click on the tab and click Reveal in Finder

 

rev.png

 

With document tabs and a psdc one can right click and click on Reveal on Web, though that just seems to open the documents in the online photoshop beta.

 

revw.png

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022
LATEST

That is great Jeff, it selects the file too, which is one better than the first script that I offered!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

I would offer the following script to open the current (saved) document's containing folder on Mac or Win OS. Install the script and assign a custom keyboard shortcut for easy access:

 

// Open Document Parent Folder.jsx

#target photoshop

try {
    activeDocument.path;
    activeDocument.path.execute();
} catch (e) {
    alert("Unsaved document - there is no containing folder to open!");
}

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 06, 2022 Sep 06, 2022

A related Photoshop script to open and select the file in Adobe Bridge:

 

https://community.adobe.com/t5/photoshop-ecosystem-discussions/how-do-i-start-adobe-bridge-in-photos...

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines