What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Save all open PSD:s


daaxe002

New Member
Messages
1
Likes
0
Hello I work as a photographer and often work with several big psd:s simultaneously. My question is therefore: Is there an easy way to save all at the same time? Not to new files just refresh the existing one?

Thanks
/David
 
This can be done with a script....
Code:
for (var a =0;a<documents.length;a++){
var EXT =documents[a].name.toLowerCase().match(/[^\.]+$/).toString();
if(EXT.length==3 && EXT != "jpg"){
	activeDocument =documents[a];
	documents[a].save();
	}
}
 
Hello I work as a photographer and often work with several big psd:s simultaneously. My question is therefore: Is there an easy way to save all at the same time? Not to new files just refresh the existing one?

Trust me, that's just asking for things going wrong one day...

On the other hand, if you use Windows you can close all open windows by a shift+left click on any X in the top-right corner of any document window (you only have to do that once!). It will then ask for each document whether you want to save it or not. Be aware that it also forces you to save new documents, because skipping specific documents is not possible.
 

Back
Top