+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Newbie
    Join Date
    Oct 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Save all open PSD:s

    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

  2. #2
    The Script Master
    Join Date
    May 2009
    Location
    Bradford,UK
    Posts
    187
    Thanks
    0
    Thanked 26 Times in 24 Posts
    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();
    	}
    }

  3. #3
    Junior Member
    Join Date
    Oct 2009
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by daaxe002 View Post
    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.

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Powered by vBulletin® Version 4.1.9
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
Content Relevant URLs by vBSEO 3.6.0
Copyright 2011 Photoshop Gurus Forum. All rights reserved.
All times are GMT -5. The time now is 08:06 PM.