Is it possible to place multiple PDFs cropping to bleed box in one Photoshop file all at once?

I have looked around for scripts, but it doesn't seem to be one.
I came across Dr. Brown's Place-A-Matic, but it doesn't place the the bleed box like I need.
Is there a script out there that can do this?
Thank you so much.

I would highly recommend posting your question in the Photoshop Scripting Forum too.
Photoshop Scripting

Similar Messages

  • How do I convert multiple PDFs to XML without having to open each file individually?

    How do I convert multiple PDFs to XML without having to open each file individually?

    XML for what?   XML is just a way to structure data - it's nothing in and of itself.
    However, you have to open the file (even if it's not user visible) in order to perform any operation on it - otherwise how would the data be read??
    Are you looking to do this on a desktop or server machine?  What OS platform(s)?  What programming environment?

  • Place multiple PDF files (or a folder of PDF files) into one InDesign document

    Hi,
    I know there are several scripts to place multipage Pdf's in InDesign.
    Based on those scripts I made one myself which places a PDF file with multiple pages as an InLine graphic where the name of the PDF file is inserted as a heading.
    Works great. But when I want to import 20 PDF files I have to run that script 20 times which isn't handy.
    So I'm looking for a way to choose a folder in which are several PDF-files that will be placed inside 1 ID doc.
    Any suggestions?

    Use .selectDlg():
    function getPDFs(){
        var f = someFolder.selectDlg ('Select a folder')
        if (f != null){
            return f.getFiles('*.pdf');
        return [];
    Peter

  • Is it or has it ever been possible to select multiple PDF's and print into a single print stream using Reader

    We have Multiple users who claim they have been able to select multiple PDF's and select print. It then would send to a single stream and end up as one document. These are reader users.
    We have tested under reader 10.1.4 and 11.0.06 and haven't been able to make it work. Has this ever been possible?

    Thanks everyone. That's what I needed to know.

  • Is it possible to send multiple PDF attachments from an iPad?

    When sending an email from my iPad, I am unable to send multiple attachments, just one file at a time.
    Is there any way to send two PDF files in one email?
    Thanks,
    Melissa.

    I don't need to send it to multiple contacts, I need to send multiple PDF files in an email from my iPad.
    Thanks for the assistance though.
    Regards,
    Melissa.

  • Place AI / PDF with a bleed

    Hi,
    We have some artwork created in Illustrated, and the image extends off the page to create the 'bleed'
    We need to place these images in to Indesign, and keep the bleed - however, when placing the file into indesign, it seems to always crop the image down to the page size of the illustrator file, and lose the bleed.
    any suggestions on this?
    Thanks

    jonshutt,
    Do you check Show Import Options when you place ai/pdf? There are Options: Crop To. Choose Bleed.
    HTH
    Boyan
    P.S. I'm with CS3, but as I remember in CS2 things were the same.
    Edit: Sorry, but Bob is right. The workaround is on the Illustrator side. I prefer to place pdfs instead and that's why I made the mistake above.
    Maybe you can print ai files from Illy to PDF with Crop Artwork: Artwork Bounding Box and then place the pdf in InDesign as described above.

  • Multiple users working in one Photoshop file?

    We have been doing a lot of photoshop work recently in the office and have quickly run into a problem.  Due to some poor communication on my part, two of us ended up working within the same photoshop file at the same time on separate computers.  Unaware of this, both of us kept saving our work, every time overwriting the other persons work.  After we discovered this hours of work was lost.  My question is this: is there a way where multiple people can work within a single photoshop file without saving copies for each person to work within or is there a way to prevent someone from overwriting a .PSD file while it is open by another user?

    BUMP
    Did you ever find a solution to this problem? I would imagine every single team of designers runs into this and I'm surprised it's virtually nonexistent in forums.

  • Place multiple pdfs into separate indesign and export to pdf again

    Ok I have a lot of PDFs that I need to place into indesign in their own file, then re-export back as a PDF again.
    Can anyone recommend a script for this if there is one? All the pdfs have different page counts etc. and I don't need to save the Indesign file.
    I just want to put all the PDFs into their own InDesign file and reexport to PDF again. They are all A4 sized PDFs, 210 x 297mm.
    Any help is appreciated.
    Thanks

    Thanks harbs
    I need to Save all the pdfs as RTF, and some of the PDFs have bad tags and won't allow me to save as RTF.
    I can batch process them in Acrobat to Print to PDF and that works for some, but not all the PDFs, it won't print some of them back to PDF.
    I have 100's of these "bad pdfs" and it would be great to be able to place them all into separate indesign files and export out as pdf again. It will be tedious to run the PDF importer and export for all of the files.
    I don't need to save the indesign file, just place and export the pdf again.
    Just looking to automate the process.

  • Is it possible to combine multiple pdf's into one without saving them onto your computer?

    Hello
    I open pdf's in an application (no add ons for acrobat exist), and want to combine them without having to use time on saving them before merging them into one single document.
    Is it possible to do this without having the files saved onto your computer? I use acrobat x pro.

    I dont think you understand my question. Of course Adobe reader cant combine pdf's, if it could I would not have had to purchase Adobe acrobat.
    The problem I am trying to solve is how to combine pdf files when they are not opened/saved locally on my computer.
    If I make Acrobat the standard program for opening pdf files on my computer - then will it be possible to combine the files that are opened without saving them first?
    I dont have the program installed on my computer now, and have to know this before we purchase it.

  • Possible to create multiple pdf files from links?

    In Acrobat X Pro, is there a way to apply the option "create pdf file from link" to several links on the same website at once?.thanks

    About the closest you can get is to use the Tools > Document Processing > Web Capture > Append all links on page command, which will traverse the links and append them to your existing PDF that has been captured from a web site.

  • Is it possible to place multiple Annotations on the same cwgraph?

    Hi,
    I'm trying to add multiple vertical bars (annotations) on a cwgraph.
    Here is the code that I have for a command button:
    Private Sub Annotation_Click()
        S = S + 2
        CWGraph1.Annotations.Add
        CWGraph1.Annotations.Item(1).Shape.XCoordinates = Array(S, S)
        CWGraph1.Annotations.Item(1).Shape.YCoordinates = Array(-10, 10)
    End Sub
    What happens when I click the button, is a new annotation is added with respect to S, but the last annotation is removed.  Can someone point out the error of my ways?
    Thanks,
    Max

    The annotation isn't removed. What's happening is that you're always updating
    the properties for the first annotation that you added, and the same
    annotation is updated with the new coordinates each time that you click the
    button. If you change your code to
    always use the last index into the Item property, you will see the expected
    results. For example:
    Private Sub Annotation_Click()
    S = S + 2
    CWGraph1.Annotations.Add
    Dim index as Integer
    index = CWGraph1.Annotations.Count
    CWGraph1.Annotations.Item(index).Shape.XCoordinates = Array(S, S)
    CWGraph1.Annotations.Item(index).Shape.YCoordinates = Array(-10, 10)
    End Sub
    Alternatively, you can use the return value of Add to update the most recently
    added annotation. For example:
    Private Sub Annotation_Click()
    S = S + 2
    Dim annotation As CWAnnotation
    Set annotation = CWGraph1.Annotations.Add
    annotation.Shape.XCoordinates = Array(S, S)
    annotation.Shape.YCoordinates = Array(-10, 10)
    End Sub
    - Elton

  • Importing multiple PDF pages into text boxes

    Hi,
    Im wanting to import a pdf doc of adverts (roughly 300 pages) into indesign into a text box to allow me to treat the individual pages as text items to allow me to space them and fit them to the pages accordingly. I can add single pages into a text box using the place command however it wont flow all the pages into the text box one after each other.
    is this possible?

    I expect this would need to be scripted unless you are able to use a grid,  in which case the "gridified" placing options in CS5 might allow you to place  all the pages that will fit on a single page at one time from the loaded cursor.  That's not something I've played with, though so I can't wear it would  work.
    I'm not sure placing them as inline anchored objects (as you describe), by  the way, is going to give you the sort of placement control you want.

  • How can I export multiple selections in a list box into a .csv file?

    Hi all, I've created a form in Acrobat X with a list box enabled for multiple selections. When I try to export the filled out form into a .csv file, only the first selection shows up. Can anyone help me figure out how to get all selections to export? Thanks!

    Thank you for your quick response!
    Once a recipient fills out the form (which has two questions with list boxes and multiple selection enabled) they send the completed form back to me. When I open the completed form, I am given the option add the completed form to a reponse file which was set up when I distributed the form. When I open the reponse file, it lists all of the responses in rows, and the values that were chosen in the form are arranged in columns. In this file, the list boxe columns have multiple values, separated by commas (which is what I'm looking for). At this point there is an option to export into a .csv file or an .xml file. If I choose the .csv file and open in excel, only the first selection shows in the list box column rather than all selections that were initially made by the responder.

  • Place multiple page PDF script no longer runs correctly

    I have place multiple PDFs into ID java script. Recently, when running the script, I'm no longer prompted to use current doc or new doc. I also don't get a prompt to place PDF starting on page x. It just opens a new 8.5 x 11 doc and places the PDF pages.
    I haven't deleted my prefs yet (haven't made a note of what they are). Nor have I deleted the script. Thought I'd check here first before nuking prefs or script. I get a lot of PP presentations as PDFs for printing so I need the ability to place into an 11 x 8.5 file.
    AFAIK, I haven't added anything new to my workstation which is running CS3 on Dual G5 with OS10.4.11. I have a tendency to troubleshoot after a 12 hour day and I've found out after the fact I did a lot of unneeded busy work by not thinking on it out more or asking around beforehand.
    Thanks in advance for any help.

    Does any other script show any dialog at all?
    If not, some rogue (or interrupted) script switched off User Interaction. You can enable it again with this one line javascript:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

  • How do I: put multiple PDF pictures into one PDF page?

    I have just installed Adobe Acrobat Pro Ver 9 - so this apllication and its associated SDK are the only applications available to me for use.
    Adobe Acrobat was chosen because of its AutoCAD capabilities (when AutoCAD is not present). i.e.  Using Acrobat & AutoCAD's plot configuration files & Pen / colour selection table ensures the output has correct line thicknesses (sometimes colours in CAD are used to represent a line's thickness) - this is preserved when using Acrobat.
    The generated output is fantastic. However, when I try to print the output via Excel / Word (used for layout) - my perfect output is reduced to imperfect results.
    So: is it possible to layout multiple PDF pictures inside one PDF entity for printing purposes such that the original output is not distorted?
    I have in the past put pages in front or behind other pages but cannot find any references or code that works with Pro 9 nor indeed the manual way to insert PDF pages at any location on a single PDF Page?
    I'll try and explain.  My template coud consist of 6 boxes on a single A4 page thus:
    My base PDF Page (can be thought of as a template - ideally it wont be printed - but even if it is - it wont be printed on any media material) has 6 areas (any number of areas up to 100) on it.  In each area, there is a box.  It is within these boxes that I wish to place a PDF Picture.  Not all pictures will be the same.  How can I do that?  Ideally I'd like some example C# code - though doing it as a user will suffice, for now.
    Is there a way of programmatically selecting each of the above boxes on the base PDF Document?
    I do know of one manual method (though it seems long winded) and it is not accurate enough in that (even though the layers are deselected) - the hidden layers are subsequently outputed too - not good!
    Uses a button icon over each box.
    All the current Adobe help for the SDK refers to Pro 8 and previously - which all seems to have now been replaced in Pro 9
    This question will be placed in the Developer & User Forums - as it pertains to both.
    Thankyou in advance for anyone that either knows any workarounds or any ways to affect a solution. 

    Picture of what I want to see:
    What I get, and don't want to see is:
    The PDF was generated using Adobe Acrobat Pro 9 from an AutoCAD LT (DWG) file without AutoCAD being present but making use of a plot configuration (PC3) file & pen table (CTB) file.  The resultant file [WhatIWantToSee.pdf] is perfect - all the lines are the right thickness & colour and are perfect vectors (with no construction / proofing layers visible).  When you view that file in Acrobat and show the "Layers" property box, you see that the correct number of layers whilst are still present are indeed turned off.
    However, when I add a forms-button to one of the rectangles (please refer to initial post - where there are 6 rectangles), and display same file as icon display.  The resultant view is the one shown above named [ What I get and don't want to see].  It seems the saved layer settings are all ignored?
    I generated the PDF file through Adobe Acrobat Pro 9  Menu | File | Create PDF | From File (Files of type Autodesk) | Options | Selected Layers | Layout | Last Active Layout.
    Rectangles are regular content elements - not fields (in the general meaning of form-fields).

Maybe you are looking for