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

How do I save all the tabs as one PSD in Photoshop 2020?

New Here ,
Jan 03, 2020 Jan 03, 2020

Copy link to clipboard

Copied

I know this is frequently asked but couldn't get a definitive answer, I am new to Ps, please help.

Views

12.7K

Translate

Translate

Report

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 ,
Jan 04, 2020 Jan 04, 2020

Copy link to clipboard

Copied

The tabs are separate documents. There is no way to just save them as one without any further intervention. You proactively have to insert the contents of the documents into other documents using copy&paste, linking smart objects, drag&dropping files onto a document and what have you.

 

Mylenium

Votes

Translate

Translate

Report

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 ,
Jan 04, 2020 Jan 04, 2020

Copy link to clipboard

Copied

Choose File >  Scripts > Load files into stack - klick on ADD OPEN FILES and OK - see screenshot

Ebenendatei.jpg

Votes

Translate

Translate

Report

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 ,
Jan 04, 2020 Jan 04, 2020

Copy link to clipboard

Copied

LATEST

If you wish to combine all open tabbed documents into a single file, then use the Load Files Into Stack script as suggested by Marianne-Deiters.

 

If the files are a smart object layer, such as opening a file from ACR as a Smart Object, then you will need a custom script, such as found here:

 

https://community.adobe.com/t5/photoshop/how-to-auto-stack-smart-objects-into-single-file/m-p/108331...

 

If you did wish to save all open tabbed documents to separate files, then a custom script will be required. A file format with appropriate options would need to be coded, such as PSD with layers, alpha channels and ICC colour profiles.

 

If you are happy to have the Save As dialog box pop up you could insert the Save As command into an action, then reference the action in a script such as this:

 

 

 

 

 

for (var i = 0; i < app.documents.length; i++) {
    app.activeDocument = app.documents[i];
    // Change the action and action set name to match your action!
    app.doAction("Save As Action", "My Save As Action Set.atn");
}
while (app.documents.length) {
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
}

 

 

 

 

Votes

Translate

Translate

Report

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