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!

Search results

  1. P

    Read / Write metadata to image / layer

    Metadata can be added to the file without open it in Photoshop, but not to a layer. To add metadata to a layer the file must be opened in Photoshop. All these can be accomplished with Extendscript. Using Python or any other COM you might have some difficulties.
  2. P

    Copying multiple images from PS to Illustrator.

    I don't know as Ican't get it to fail here? The code can be shortened as it doesn't need to select trancparency. #target photoshop app.bringToFront(); main(); function main(){ if(!documents.length) return; try{ var SB=activeDocument.selection.bounds; }catch(e){ alert("No...
  3. P

    When I save for web, change size of the parts

    The problem could be the PPI of the original document, as this has not been mentioned. If the 4 sections are saved with Save For Web the PPI could be removed and will default to 72
  4. P

    Copying multiple images from PS to Illustrator.

    Could you try copying the script once again as the error message is cmplaining of a curly bracket missing. I have copyed the above script and tested it so I know it is ok.
  5. P

    Copying multiple images from PS to Illustrator.

    I wrote it six years ago as part of a small project, but thought it would meet your needs.
  6. P

    Copying multiple images from PS to Illustrator.

    You could try this script, run the script after you have made all your selections. Photoshop only. #target photoshop app.bringToFront(); main(); function main(){ if(!documents.length) return; selectTransparency(); try{ var SB=activeDocument.selection.bounds; }catch(e){...
  7. P

    Global find/replace in metadata WITHOUT affecting other text in same field

    This Adobe Bridge script should work.. https://raw.githubusercontent.com/Paul-Riggott/PS-Scripts/master/Find%20and%20Replace.jsx
  8. P

    I used Adobe Bridge as a....

    I wonder if you have selected "Filmstrip" if so select "Essentials"
  9. P

    Loading all images in a folder into groups of 3 ...is it possible ?

    Here is an example script that will create PSD's of 3 jpgs each and save them in a folder called "Stacked" off the selected folder. #target photoshop; main(); function main(){ inputFolder = Folder.selectDialog("Please select the folder with Files to process"); if(inputFolder == null) return...
  10. P

    Scripting Way to have the "create just date " to print into photo?

    #target photoshop; if(documents.length){ if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript'); var xmp = new XMPMeta(activeDocument.xmpMetadata.rawData); if( xmp.doesPropertyExist(XMPConst.NS_XMP, "CreateDate" ) ) { var date =...
  11. P

    Automate Batch by jumping

    Sorry I do not understand, are you wanting to check letters as well? If so that would take a lot to do.
  12. P

    Automate Batch by jumping

    Please try this... #target photoshop; app.bringToFront(); main(); function main(){ var inputFolder= Folder.selectDialog ("Please select folder to process"); if(inputFolder == null) return; var outputFolder = Folder(inputFolder + "/processed"); if(!outputFolder.exists) outputFolder.create()...
  13. P

    Automate Batch by jumping

    Yes this is possible if you want to process all odd numbered files. This example will prompt for the input folder and write the output files to a folder called processed off the input folder. N.B. You need to change the line:- doAction("ActionName","ActionSet"); To reflect the actual name of...
  14. P

    Scripting Script to ask which Printer to use

    Sorry no. The print routines are very restricted and most of the time do not work at least up to CS6 (my latest version). So I don't know if anything has improved with CC versions.
  15. P

    Scripting Script to ask which Printer to use

    Printer functions by script are very limited, also trying to print via script in certain versions of Photoshop will crash. So I don't script any printer functions execpt one and thats:- app.activeDocument.printOneCopy();
  16. P

    Scripting Script to run Actions according to the files names

    Here is another version. #target photoshop; if(documents.length){ //AMEND THE LINE BELOW WITH YOUR ACTIONSET NAME var actionsetName = "Your Action Set Name"; var Name = app.activeDocument.name.replace(/\.[^\.]+$/, ''); try{ var action = "Create" + Name.match(/[^\/|^-]+$/); app.doAction...
  17. P

    Scripting Photoshop - Microsoft Excel Macro

    You could do all the resizes in the one script and all the saves, as an example. #target photoshop; app.bringToFront(); main(); function main(){ var inputFolder = Folder("/R/Marketing/Images/Batch Done"); if(!inputFolder.exists) { alert("Input folder does not exist"); return; } var...
  18. P

    Scripting Photoshop - Microsoft Excel Macro

    yes, or you could call another script from the same position I.E. var SCRIPTS_FOLDER = decodeURI(app.path + '/' + localize('$$$/ScriptingSupport/InstalledScripts=Presets/Scripts')); $.evalFile( new File(SCRIPTS_FOLDER + '/Name of your script.jsx'));
  19. P

    Scripting Photoshop - Microsoft Excel Macro

    You can add another doAction after the curly bracket as all files will have been processed. app.activeDocument.close(SaveOptions.DONOTSAVECHANGES); } doAction("ActionName","ActionSet"); };
Back
Top