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

    Scripting Photoshop - Microsoft Excel Macro

    Mmmm It looks as if the output folder does not exist, please can you check. The file name/path looks okay.
  2. P

    Scripting Photoshop - Microsoft Excel Macro

    It doesn't like the format of the output file path/name. Please add the alert line after this line, to see what file it is trying to save. var outFile = File(outputFolder + "/" + line[1].toString() + ".jpg"); alert(decodeURI(outFile));
  3. P

    Scripting Photoshop - Microsoft Excel Macro

    Please change those lines to: var inputFolder = Folder("/R/Marketing/Images/Batch Done"); if(!inputFolder.exists) { alert("Input folder does not exist"); return; } var outputFolder = Folder("/R/Inventory/Test"); if(!outputFolder.exists) outputFolder.create(); var csv =...
  4. P

    Scripting Photoshop - Microsoft Excel Macro

    Have you amended the output folder as well? The input folder should be: var inputFolder = Folder("/R/Marketing/Images/Batch Done"); It would not have found the files to open.
  5. P

    Scripting Photoshop - Microsoft Excel Macro

    Dan, Can you give me the first two lnes of your csv file so I can see what output filename it is trying to create?
  6. P

    Scripting Photoshop - Microsoft Excel Macro

    You can use a script, here is an example that would need amending to suit your needs. Example CSV file:- filename,newfilename P1000670.JPG,O1020270 P1000672.JPG,O1020267 P1000678.JPG,O1020278 P1000680.JPG,O1020234 P1000681.JPG,O1020212 N.B. no extension on new file name as this is added in...
  7. P

    Batch Automation Automated aspect ratio???

    The code is correct, it might be that you are not using a plain text editor? Some editors will add control characters that will stop the script working.
  8. P

    Batch Automation Automated aspect ratio???

    Just change the line var ratio = "4:3"; to var ratio = "3:2"; All should then work.
  9. P

    Batch Automation Automated aspect ratio???

    You can use a script to do this... #target photoshop; app.bringToFront(); main(); function main(){ if(!documents.length) return; var strtRulerUnits = app.preferences.rulerUnits; app.preferences.rulerUnits = Units.PIXELS; var W = activeDocument.width; var H = activeDocument.height; var ratio =...
  10. P

    Text file from a Tool Preset list

    This should give you a more complete listing... #target Photoshop; var f = new File(Folder.desktop + "/Preset List.txt"); f.open("w"); f.writeln("--- Brushes"); f.writeln(getBrushList(0).join("\n")); f.writeln("--- Colors"); f.writeln(getBrushList(1).join("\n")); f.writeln("--- Gradients")...
  11. P

    Text file from a Tool Preset list

    Not too sure if this is what you are after, it will create a text file on the desktop with the names of all loaded brushes. #target Photoshop; var f = new File(Folder.desktop + "/Brush List.txt"); f.open("w"); f.writeln(getBrushList().join("\n")); f.close(); alert("File created \n" +...
  12. P

    Free Photoshop Work

    Aw , I was hoping that you could recover a picture for me, I'd left the lens cap on.:cry:
  13. P

    Count tool - how to save the numbers in the output image

    One way is to create a text layer for each count, here is a Photoshop script that will do this.... You mighthave to ament the font size/colour to suit. N.B. Create all your counts before running the script. #target photoshop; main(); function main(){ var ref = new ActionReference()...
  14. P

    Change EXIF Createdate

    I was asked if the EXIF CreateDate could be changed in Adobe Bridge, so I came up with a scripted solution. To install unzip and place this script into the following folder: Start Bridge Edit - Preferences -Startup Scripts At the bottom click the "Reveal Button" this will open the folder...
  15. P

    Photoshop CC 2015.5

    It might help if you re-installed it though. I had the same problem last week but with 2012 distro. A reinstall fixed it.
  16. P

    Photoshop CC 2015.5

    For info if anyone else gets this error. It is the runtime distribution for Visual Studio 2015 This can be installed from https://www.microsoft.com/en-us/download/details.aspx?id=48145
  17. P

    This just flew over my house

    Here is another shot, it made three circles then went back to Leeds airport.
  18. P

    This just flew over my house

    Captured flying over Queensbury.
  19. P

    Batch resizing to a specific dimension

    I think a custom script is in order to do a FitImage then an absolute Canvas Size. Unzip the script and put it in your application presets/scripts folder. Restart Photoshop if it was open. Create an action using "Insert Menu Item" to select the script File - Scripts - FitTo790x633.jsx Once the...
  20. P

    How fast is fast?

    14 Mbps and I am on FIBRE
Back
Top