Recent content by Paul MR

  1. P

    Automatic Bleed action in Photoshop?

    You can use a script to do this. This example will increase the document 6mm (width and height) and add a guide 3mm from the right hand side. #target photoshop; if(documents.length) main(); function main(){ try{ var doc = app.activeDocument; var res = doc.resolution; app.displayDialogs =...
  2. P

    Metadata Title Sequencing

    If you have Photoshop you could use a simple Bridge script.
  3. P

    Adobe CS6 vs CC

    They removed the output panel (but as there was an outcry it can now be installed as a seperate package). The Export panel has also been removed, and sadly missed by thousands. Configurater will no longer be supported! Flash panels will go. So you will have to learn HTML5 to have panels. These...
  4. P

    Adobe CS6 vs CC

    One of the major concerns I have is that they can remove functionality as well as implement it, screwing up a workflow. At least with a static version you know what you have. (Just look at what has been removed in Bridge!). CC is not for me!
  5. P

    Download for Photoshop CS4 anywhere

    You can find the CS4 downloads here... http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html Make sure you read the instructions, they are VERY important!
  6. P

    Can you still download CS2 free from adobe?

    Try here... https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads
  7. P

    Download for CS5

    You can download them from here... http://prodesigntools.com/all-adobe-cs5-direct-download-links.html N.B. Read the instructions, it is VERY important!
  8. P

    script to compress tiffs and keep layers

    You could use something like this in Photoshop... #target photoshop app.bringToFront(); main(); function main(){ var inputFolder = Folder.selectDialog("Please select folder to process"); if(inputFolder == null) return; var tifList = inputFolder.getFiles("*.tif"); for(var f in...
  9. P

    Batch Processing

    A couple of ways you can do this, select the files in Bridge then, Tools - Photoshop - Image Processor (pro) or you could use my processor where you can select the file type to process... http://www.scriptsrus.talktalk.net/PP.htm
  10. P

    Batch processing - resizing in photoshop, help please

    Fit Image is the correct way of doing it. The width is the maximum width and the height is the maximum height. Think about Fit Image as it resizing to fint the image into a box with the dimensions you have given it. There is no need to seperate landscape and portrait. Example: If you gave...
  11. P

    Help importing into PS3

    In the downloaded zip file, Camera Raw.8bi is the file you want, this file should replace the one in C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS3\File Formats folder N.B. Make sure you move the existing file somewhere safe in case you need to revert for some reason.
  12. P

    Help importing into PS3

    It's difficult to know as you haven't said what Operation System you have. If it's 64 bit try C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS3\File Formats
  13. P

    Help importing into PS3

    All the information is on that page on how to install it, copied from that page... Manual installation on Windows®: 1. Exit Photoshop CS3 and Adobe Bridge. 2. Open My Computer. 3. Double-click Local Disk (C:). 4. Navigate to: (Please read directory carefully) Program...
  14. P

    Help importing into PS3

    You need Adobe Camera Raw 4.6 http://www.adobe.com/support/downloads/detail.jsp?ftpID=4040
  15. P

    CS5: Problem running actions from batch processes

    The easy way is to split the action into two actions. The first action can then be run on open, you can then do your manual alterations then click on next (having selected the second action to be run on close). This way you don't have to go out of button mode. Hope this helps.
Back
Top