How to watermark multiple PDFs on a mac

Hi,
I have around 100 PDFs that each need to have the same watermark. I've read that a batch sequence may be the answer but i can't find the 'advanced' menu option- does it have a diferent label as i'm using an apple mac?
is acrobat even the right program? i have access to indesign and photoshop if either would be better.
Any help would be greatly appreciated,
Thank you

Hi,
Thank you for your help! I have tried this a couple of times now but it doesn't seem to be working.
I create a new custom action by dragging the 'add watermark' box over, and when i run the action on the selected files everything seems to work- in the box on the right it works it's way down each of the 'files to be processed', putting a little green tick after each.
However, i can then close and save that file and none of the files that i've supposedly just watermarked are watermarked.
Am i missing something obvious?
Thank you!

Similar Messages

  • How to genarate multiple pdf's in XML Publisher

    Hi,
    i need sample code for genarating multiple pdf output files.
    I am using datasource as "XML file" & Through Application Engine ..
    How to genarate multiple pdf's..
    Please any one help on this issue, and also send me sample code step by step process
    Regards
    Ravi

    Hi,
    Please refer to the setup/config of Bursting option for the XMLp report.
    Thanks,
    Saxon SI

  • HT4059 I'm trying to organize my PDFs in iBooks on my ipad2 and I can't figure out how to combine multiple PDFs into one. Any thoughts?

    I'm trying to organize my PDFs in iBooks on my ipad2 and can't figure out how to combine multiple PDFs into one. Any thoughts?

    I'm trying to organize my PDFs in iBooks on my ipad2 and can't figure out how to combine multiple PDFs into one. Any thoughts?

  • How to exreact multiple pdf files from a zip files from application server to presentation server

    Hello exprts,
    I am passing one pdf file and one text file to zip file in apllication server through my custom program and then downloading it using standard function module to my desktop. its working fine. Then I added  another pdf file to my zip file. But only single pdf file is getting download . So can you please help me regardiong this issue? 

    Dear Experts ,
    I finded out the way to extrcat pdf files in presentation server. But now my problem is that I am not able to add multiple pdf files in a zip file. When I am adding new pdf file then older one is not coming in read data set. So please kindly tell me how can I add multiple pdf file in my zip file and again I can get all the pdf files from here.

  • How to create multiple pdf files from multiple batch processing

    I have several file folders of jpeg images that I need to convert to separate multi-page pdf files. To give a visual explanation:
    Folder 1 (contains 100 jpeg image files) converted to File 1 pdf (100 pages; 1 file)
    Folder 2 (contains 100 jpeg image files) converted to File 2 pdf (100 pages; 1 file)
    and so on.
    I know I can convert each folder's content as a batch process, but I can only figure out how to do so one folder at a time. Is it at all possible to convert multiple folders (containing jpegs) to multiple pdf files? Put differently, does anyone know how to process a batch of folders into multiple (corresponding) pdf files?
    Many thanks.

    There are two approaches to do this:
    - First convert all JPG files to PDF files using a "blank" batch process. Then combine all PDF files in the same folder using another batch process and a folder-level script (to do the actual combining). I have developed this tool in the past and it's available here:
    http://try67.blogspot.com/2010/10/acrobat-batch-combine-all-files-in.html
    - The othe option is to do everything in a single process, but that requires an application outside of Acrobat, which I'm currently developing.
    If you're interested in any of these tools, feel free to contact me personally.

  • How to Merge Multiple PDF's

    HI Forum
    I am a newbie to both Acrobat and VB,
    Basically a perl Developer,
    I have created a application to Merge multiple PDF's into a Single PDF, but the problem I am facing is some pages are missed during Merging
    For Example
    I have 4 pdf's (1.pdf, 2.pdf, 3.pdf, 4.pdf), each PDF has 2 pages, totally 8 pages,
    When i merge using my application, it is getting collapsed and then merged
    Here is my Code
    <code>
    Imports System.IO
    Imports Acrobat
    Public Class Form1
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            MergePDF()
        End Sub
        Sub MergePDF()
            Dim gPDDoc1 As AcroPDDoc
            Dim gPDDoc2 As AcroPDDoc
            Dim gPDDoc3 As AcroPDDoc
            Dim gPDDoc4 As AcroPDDoc
            gPDDoc1 = CreateObject("AcroExch.PDDoc")
            gPDDoc2 = CreateObject("AcroExch.PDDoc")
            gPDDoc3 = CreateObject("AcroExch.PDDoc")
            gPDDoc4 = CreateObject("AcroExch.PDDoc")
            Dim chk1 = gPDDoc1.Open("D:\sathish\1.pdf")
            Dim chk2 = gPDDoc2.Open("D:\sathish\2.pdf")
            Dim chk3 = gPDDoc3.Open("D:\sathish\3.pdf")
            Dim chk4 = gPDDoc4.Open("D:\sathish\4.pdf")
            Dim mergefile As Boolean
            Dim numpg1, numpg2, numpg3, numpg4
            numpg1 = gPDDoc1.GetNumPages()
            numpg2 = gPDDoc2.GetNumPages()
            numpg3 = gPDDoc3.GetNumPages()
            numpg4 = gPDDoc4.GetNumPages()
            MsgBox(numpg1 & numpg2 & numpg3 & numpg4)
            mergefile = gPDDoc1.InsertPages(numpg1 - 1, gPDDoc2, 0, 1, 0)
            mergefile = gPDDoc1.InsertPages(numpg2 - 1, gPDDoc3, 0, 1, 0)
            mergefile = gPDDoc1.InsertPages(numpg3 - 1, gPDDoc4, 0, 1, 0)
            Dim savemergefile As Boolean
            savemergefile = gPDDoc1.Save(1, "D:\sathish\merged.pdf")
        End Sub
    End Class
    </code>
    I Dont know how to give the correct page end to merge,
    Thanks in Advance for your Kind replies,
    Thanks & Regards
    Sathish V.

    Great idea. do you have example code? I found some code but it its contingent upon the pages having a page number on them. the pdfs im dealing with have no page numbers on the pages. also this code deletes pages in a range. I need to delete all other pages except for the page numbers on the range. thanks! Option Explicit Sub Delete_PDF_Pages() ' Adobe code based on http://vbcity.com/forums/t/51200.aspx Dim xMsg          As String Dim xInput        As String Dim xOutput        As String Dim xResponse      As Long Dim xLast_Row      As Long Dim xErrors        As Long Dim xDeleted      As Long Dim i              As Long Dim j              As Long Dim AcroApp        As CAcroApp Dim AcroPDDoc      As CAcroPDDoc Dim AcroHiliteList As CAcroHiliteList Dim AcroTextSelect As CAcroPDTextSelect Dim xarray()      As Variant Dim PageNumber    As Variant Dim PageContent    As Variant Dim xContent      As Variant xInput = "C:\Users\jaime\Desktop\Granado LLC\test\TestPages.pdf" xOutput = "C:\Users\jaime\Desktop\Granado LLC\test\TestPages_Output.pdf" xLast_Row = [A1].SpecialCells(xlLastCell).Row ReDim xarray(xLast_Row) xResponse = MsgBox("About to delete all pages which contain values from the range A1:A" & xLast_Row & Chr(10) _             & Chr(10) & "Input:" & Chr(9) & xInput _             & Chr(10) & "Output:" & Chr(9) & xOutput _             & Chr(10) & Chr(10) & "('OK' to continue, 'Cancel' to quit.)", vbOKCancel, "Delete Pages") If xResponse = 2 Then     MsgBox "User chose not to continue. Run terminated."     Exit Sub End If ' Files and data OK? If Dir(xInput) = "" Then xMsg = "Input file not found - " & xInput & Chr(10) If Dir(xOutput) <> "" Then xMsg = "Output file exists - " & xOutput & Chr(10) xarray = Application.Transpose(Range("A1:A" & xLast_Row)) For i = 1 To xLast_Row     If Not IsNumeric(xarray(i)) Or xarray(i) = "" Then         xMsg = "Non-numeric ""Delete"" value of """ & xarray(i) & """ found on row " & i & Chr(10)         Exit For     End If Next If xMsg <> "" Then     MsgBox (xMsg & Chr(10) & "Run cancelled.")     Exit Sub End If ' Open the PDF... Set AcroApp = CreateObject("AcroExch.App") Set AcroPDDoc = CreateObject("AcroExch.PDDoc") If AcroPDDoc.Open(xInput) <> True Then     MsgBox (xInput & " couldn't be opened - run cancelled.")     Exit Sub End If ' Read each page... For i = AcroPDDoc.GetNumPages - 1 To 0 Step -1     Set PageNumber = AcroPDDoc.AcquirePage(i)     Set PageContent = CreateObject("AcroExch.HiliteList")     'Get up to 9,999 words from page...     If PageContent.Add(0, 9999) <> True Then                 Debug.Print "Add Error on Page " & i + 1         xErrors = xErrors + 1         Else         Set AcroTextSelect = PageNumber.CreatePageHilite(PageContent)             If Not AcroTextSelect Is Nothing Then             xContent = ""             For j = 0 To AcroTextSelect.GetNumText - 1                 xContent = xContent & AcroTextSelect.GetText(j)             Next j             For j = 1 To xLast_Row                 If InStr(1, xContent, xarray(j)) > 0 Then                     Debug.Print "Page " & i + 1 & " contains " & xarray(j) & " - " & xContent                     ' To avoid problems with the delete...                     Set AcroTextSelect = Nothing                     Set PageContent = Nothing                     Set PageNumber = Nothing                     If AcroPDDoc.DeletePages(i, i) = False Then                         MsgBox ("Error deleting page " & i + 1 & " - run cancelled.")                         Exit Sub                     End If                     xDeleted = xDeleted + 1                     Exit For                 End If             Next         End If             End If Next i If AcroPDDoc.Save(PDSaveFull, xOutput) = False Then     MsgBox "Cannot save the modified document"     Exit Sub Else     MsgBox (xDeleted & " pages deleted. (" & xErrors & " errors.)") End If     AcroPDDoc.Close AcroApp.Exit End Sub

  • How to print multiple PDF attachments from report

    Hello experts,
    I have developed an ALV report that is having some PDF attachments and I have push button(Print all) as shown in below image.
    When I click on print all button all the pdf attachments should be send to printer.
    I did check in the SCN but I found some posts to print single pdf from after opening the pdf and some posts to view a pdf file which is saved on desktop but in my requirement I have multiple pdf attachments and I have to send all the attachments to printer with print all button click without opening the attachmens.
    Can you please help me to resolve this issue.Thanks in advance.
    Thanks & Regards
    Suman

    Hi,
    Your Requirement is bit complex,
    i hope we can achieve the solution if follows bellow links and we use application server for temporary storage.
    Print Adobe Document from any URL link in SAP ABAP.
    Hope this will help you.

  • How to use multiple midi controllers with Mac book pro (2 usb)?

    I have a newer macbook pro that has 2 USB ports, and a lightning port and a firewireport.
    On stage I will be using the firewire port connected to a Presonus Firestudio mobile to use as the interface to the house mixer.
    I will use 1 USB for my M-audio Axiom 61
    I will use the other for my Yamaha WX-5 Wind synth
    I'd like to be able to get the apogee midi foot controller to control the playback audio. For example I'll be using it to stay in a solo section, then step on it to move it forward ot the next section when I am done soloing
    I'd also like to use some sort of midi switch to turn on vocal effects of the mic.
    Anyway since I only have 2 USB ports, how should I connect the 3rd, or 4th USB midi controller?
    Will a USB hub work to do this? If so, will I always have to remember to use the same controler in the same exact hub input to make sure everything maps the same?
    I guess I'll also have to learn how to setup multiple controllers in Mainstage as well.
    Thanks
    Dan

    Hi there,
    is a question which many of us have spent ...
    I think the obvious answer is that yes you can use a hub and connect everything. however ....
    sincerely advise you to buy a good hub that is well feasible, the last thing you want on stage / rehearsal is one of midi controllers stop responding, or stay with hanged notes... etc., do not buy just because it is cheap it has to be stable and viable, some bring cable for connecting wall power just to not drain power from the USB port.
    Other things to try is to distribute as much equipment for USB / Midi.
    For example one of midi controllers connect via USB but not by Midi outside the Presonus Firestudio. Connecting Presonus Firestudio to a single USB port as it is a main equipment.
    but it really is an issue that greatly limits the use of USB devices.
    Try it and tell me how it went. Good luck
    (sorry for my english i´m Portuguese)

  • How to merge multiple PDFs and display in a new window

    Hi,
    I'm trying to merge multiple PDFs into one PDF and display the output in a new window using PeopleCode. I have a button on a page, which when clicked should open a new window with the merged PDFs. I am able to succussfully merge the PDFs using the PDFmerger class (mergePDFs) but unable to display the result in a new window.
    Please help.

    Thanks.
    I also found this piece of code very helpful.
    Local PSXP_RPTDEFNMANAGER:Utility &oUtil;
    Local boolean &bRtn;
    /* send the output to client */
    /* &sFileName = the file path /file_name.extension */
    &oUtil = create PSXP_RPTDEFNMANAGER:Utility();
    &bRtn = &oUtil.zipAndViewAttachment(&sFileName);
    Edited by: user8260115 on Sep 9, 2009 4:57 PM

  • How can I upload .pdf file from Mac to iPhone or is there an app for that?

    How can I upload a .pdf file from my mac to iPhone 3G?
    Or is there an app that will allow me to that?
    Thanks in advance
    Zia

    The app called "Air Sharing" allows you to do that. Connect to a wifi network, run the program and you can mount your iphone as a drive using Finder. Upload all the PDFs you like, and you can open them from within the Air Sharing app. Also, you can view most image files, most office files, etc.

  • How to transfer multiple pdfs from email to iPad ibooks

    Is there any way to transfer multiple files from email or imessage to ibooks on an Ipad?
    currently email opens each one then have to click on top to open in ibooks.  I have over 50 files and expect more to come.  I have tried hooking up ipad to the macbook that sent the files and put into ibooks that way, but it would require syncing all my media files.
    Icloud and airdrop have failed me miserably for PDFs transfer to my ipad.

    I don't know if this will help you, but for PDFs on my IPad  I use either Note Taker HD or EverNote. Both are available at App Store. However each one is a pay for app. Note Taker HD app is a one time fee. EverNote is monthly. There is also
    FileApp Pro. These are the apps I use. So I have immediate access to any and all PDF's in a second or 2. Note that these are my personal preferences only. Hope this helps. Cheers.

  • How to transfer multiple account emails from Mac Thunderbird to Windows Outlook 2013 ?

    I have around 5 email accounts that I access at regular intervals. I have managed to keep these accouts from years and maintained each email in dufferent folders. Now I am about to give away my mac book and switch over to windows system. All I want is to
    transfer the emails from Mac Thunderbird to Outlook in windows. I have transferred the datsbase files of each account from mac to windows laptop but dont know hoe to import these to Outlook 2013. These is no such option to import the thunderbird files in Outlook
    2013.
    Is there anything I am doing incorrect???
    Please help me Migrate all the Thunderbird data to Outlook 2013.

    You can add multiple accounts in Outlook and use them separately. But to transfer your emails from Mac Thunderbird you first need to convert the emails of Thunderbird to .PSt format in order to import into Outlook Windows. 
    There are multiple options available online as this is a common issue.
    Look Here:
    Export Thunderbird to Outlook Pst
    I hope it helps you

  • How to Watermark multiple images with different dimensions in Photoshop ?

    Is there any way that I can place a watermark on the right bottom of multiple images, no matter what dimension the images are? I have tried using Photoshop Scripts > image processor, but it works only for images of same dimension. I want to put watermark on multiple images of different dimensions. This is the output i got.
    For the first image the watermark got placed correctly, but for the second image watermark got distracted. As you can clearly see the dimensions are different. Please suggest me some solution.

    Open an image to watermark. We must have this open before we start recording an action or else it will keep opening this image and watermarking it over and over again.
    In Photoshop go to Windows >> Actions
    At the bottom of the Actions Palette you will see a little folder icon, click on it and create a new folder to hold you action in.
    Once you have a folder to hold your action we need to hit the Create New Action button (next to the new folder Icon we just used.)
    Give our new action a name and set a function key (if required.)
    If the record button is not already depressed which it should be by default, hit it now to start recording our action. (located near the folder icon again but this time to the left)
    Now that our action is recording go to File >> Place
    When the dialog box comes up navigate to your previously created watermark file.
    Hit the Place button
    Position the watermark as you would normally have it (default is dead center) and hit enter.
    Go to File >> Save as,navigate to where you want your watermarked images to finish up and hit save. DO NOT CHANGE THE FILE NAME if you do when you play the batch it will name all the files it saves the same over-writing each other.
    Close the image we just watermarked.
    when a save dialog comes up do not save the image.
    On the Actions Palette hit stop recording.
    Our Action is now recorded.
    To process an entire folder of images we go to File >> Automate >> Batch
    Select the folder in which your images are currently
    Select the folder you wish to save the watermarked copies too.
    Hit OK
    Photoshop is now watermarking all the Images in the selected folder for you.

  • How to create multiple PDF files.

    Hi,
    I have two tables, one with the customer address and another one with a note. May I know how to create a separate PDF file (for each customer) that should start with the customer name/address (from customer table) and followed by a note (from the note table)
    Thanks in advance

    Hi,
    I am stuck at the first step of designing report with jasper ireport designer... my test data is currently on apex.oracle.com and my real data is hosted on the intranet, there are quite a few options available to link to the table source before designing the report but I am not sure which one to use to connect to APEX.oracle.com (or to my intranet.. interestingly there is no option for ODBC connection, usually that's the one I use to upload files to oracle)...
    can you please suggest how to link to the table...?
    alternatively, I downloaded the data and saved it in the csv format and used that as the source to create a sample report which is shown below (is there a way to manually convert it to sql based)...? here is the report
    <?xml version="1.0" encoding="UTF-8"?>
    <jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report9" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="62e163c3-8f34-451a-800b-5f4285e2e194">
         <property name="ireport.zoom" value="1.0"/>
         <property name="ireport.x" value="0"/>
         <property name="ireport.y" value="0"/>
         <field name="MONTH" class="java.lang.String"/>
         <field name="CUSTOMER" class="java.lang.String"/>
         <field name="PRODUCT" class="java.lang.String"/>
         <field name="Revenue" class="java.lang.String"/>
         <background>
              <band splitType="Stretch"/>
         </background>
         <title>
              <band height="79" splitType="Stretch"/>
         </title>
         <pageHeader>
              <band height="35" splitType="Stretch"/>
         </pageHeader>
         <columnHeader>
              <band height="61" splitType="Stretch">
                   <staticText>
                        <reportElement uuid="e7032731-30c5-4d15-b6e0-bccaeb8de3b0" x="0" y="0" width="138" height="20"/>
                        <textElement/>
                        <text><![CDATA[MONTH]]></text>
                   </staticText>
                   <staticText>
                        <reportElement uuid="0a3a1aef-e967-42c4-81bd-1fc0688afffa" x="138" y="0" width="138" height="20"/>
                        <textElement/>
                        <text><![CDATA[CUSTOMER]]></text>
                   </staticText>
                   <staticText>
                        <reportElement uuid="35720a70-999c-4b17-966d-7a6ff104ccd2" x="276" y="0" width="138" height="20"/>
                        <textElement/>
                        <text><![CDATA[PRODUCT]]></text>
                   </staticText>
                   <staticText>
                        <reportElement uuid="bbec6818-cdb0-4745-927c-6f3e40209fb2" x="414" y="0" width="138" height="20"/>
                        <textElement/>
                        <text><![CDATA[Revenue]]></text>
                   </staticText>
              </band>
         </columnHeader>
         <detail>
              <band height="125" splitType="Stretch">
                   <textField>
                        <reportElement uuid="a6554549-7721-4a4f-94f0-3169139bfdb6" x="0" y="0" width="138" height="20"/>
                        <textElement/>
                        <textFieldExpression><![CDATA[$F{MONTH}]]></textFieldExpression>
                   </textField>
                   <textField>
                        <reportElement uuid="c2943016-5a5f-42e8-8612-5b8dafc23eea" x="138" y="0" width="138" height="20"/>
                        <textElement/>
                        <textFieldExpression><![CDATA[$F{CUSTOMER}]]></textFieldExpression>
                   </textField>
                   <textField>
                        <reportElement uuid="3d97fdd0-5923-469a-862f-be485b6416ac" x="276" y="0" width="138" height="20"/>
                        <textElement/>
                        <textFieldExpression><![CDATA[$F{PRODUCT}]]></textFieldExpression>
                   </textField>
                   <textField>
                        <reportElement uuid="724e9536-667b-4db1-96b8-81e2f5554ea2" x="414" y="0" width="138" height="20"/>
                        <textElement/>
                        <textFieldExpression><![CDATA[$F{Revenue}]]></textFieldExpression>
                   </textField>
              </band>
         </detail>
         <columnFooter>
              <band height="45" splitType="Stretch"/>
         </columnFooter>
         <pageFooter>
              <band height="54" splitType="Stretch"/>
         </pageFooter>
         <summary>
              <band height="42" splitType="Stretch"/>
         </summary>
    </jasperReport>

  • How to create multiple pdf Files out of multiple pages documents??

    I wrote multiple pages documents and stored them in a directory. That is nice, but now I want to transfer them all into pdf files.
    Is there a way to do this or do I have to open them one by one an select "Print" and so on??

    Pages 5 has virtually no AppleScript support so it would be difficult to even make an Automator workflow to do what you want.
    So yes you will have to make a pdf of each one. Be warned that Pages 5 stuffs up links after the first pages of pdfs.
    Apple has removed almost 100 features from Pages 5 and added many bugs.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder if you had it previously.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

Maybe you are looking for