Help with adding filename to my 400 pdf files

Hi everyone,
Now i have 400 pdf files in my hands and i want to print them all with the filename of each files on the page. Is there anyway i can do it in one go?]
thanks,

Creating a Batch Sequence using Acrobat Pro -
--| Select, from the menu bar, Advanced > Document Processing > Batch Processing
The Batch Sequence dialog presents itself.
--| Click the 'New Sequence' button.
The Name Sequence dialog presents itself.
--| Enter a name for the new sequence (e.g., "Add Watermark").
The Edit Batch Sequence - Add Watermark dialog presents itself.
--| Click the 'Select Commands' button.
The Edit Batch Sequence dialog presents itself.
The left side column lists commands; under the 'Document' folder -
--| Select 'Add Watermark' and then click the 'Add >>' button.
--| Click the 'Edit' button.
The Add Watermark dialog presents itself.
Configure as desired. Note the links "Page Range Options" (upper right) and "Appearance Options" (left side, just below center).
You may want to use these options as part of the Watermark's configuration.
When configuration within the Add Watermark dialog is complete, click OK.
OK out of the Edit Sequence dialog.
Back in the Edit Batch Sequence - Add Watermark dialog continue with configuration options as desired.
Note: There is a square adjacent to the "Add Watermark" command that was selected.
For unattended operation, leave this box NOT ticked.
Clicking the 'Output Options' button provides access to a dialog from which you can choose to utilize PDF Optimizer.
The 'Settings' button provides access to PDF Optimizer's configuration dialog.
With all desired configuration complete, OK out of the Edit Batch Sequence - Add Watermark dialog.
Click the 'Run Sequence' button to run a selected Batch Sequence.
The configuration selection made for "2. Run commands on:" (in the Edit Batch Sequence - <name of sequence>) determines what you will observe next.
It may be that Acrobat JavaScript will be needed to pull each PDF's document file name (?).
So - Some other information associated with PDF document's file name -
(thomp) posts at AUC:
http://acrobatusers.com/forums/aucbb/viewtopic.php?id=7428
http://acrobatusers.com/forums/aucbb/viewtopic.php?id=2908
(try67) posts at AUC:
http://acrobatusers.com/forums/aucbb/viewtopic.php?id=20725
"Print File Name with pdf Document" thread from this Forum (an older thread, but informative).
http://forums.adobe.com/thread/302996
Be well...

Similar Messages

  • Help with adding math to my read in file program

    Hi, my code displays the txt data fine but where the second read in part i need to do some adding and division with each number. It gives me an error when I try it, how could i fix this?
    gravity.txt
    |
    0.37 0.89 1.00 0.37 2.48 1.05 0.89 1.11 0.07
    * Write a description of class WeightOnPlanetsV1 here.
    * @author (your name)
    * @version (a version number or a date)
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Scanner;
    import java.io.PrintWriter;
    import java.io.File;
    import java.io.IOException;
    public class WeightOnPlanetsV1
      public static void main(String[] args) throws IOException
        int planetWidth = 10;
        int gravityWidth = 16;
        int weightWidth = 14;
        String formatString = "%" + planetWidth + "s%" + gravityWidth + "s%"
            + weightWidth + "s%n";
        System.out.printf("%40s\n\n", "My Wight on the Planets");
        System.out.printf(formatString, "Planet", "Gravity", "Weight");
        System.out.printf("---------------------------------------------------%n");
        String[] planets =
          "Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus",
          "Neptune", "Pluto"
            String token = "";
              File fileName = new File("gravity.txt");
              Scanner inFile = new Scanner(fileName);
              List space = new ArrayList();
              while (inFile.hasNext())
                   token = inFile.next();
                   space.add(token);
              inFile.close();
            String  token1 = 0;           // or double
              File fileName1 = new File("gravity.txt");
              Scanner inFile1 = new Scanner(fileName1);
              List space1 = new ArrayList();
              while (inFile1.hasNext())
                  token1 = inFile1.next();
                   space1.add(token1);
              inFile1.close();
        for (int i = 0; i < planets.length; i++)
    System.out.printf(formatString, planets, space.get(i), space1.get(i));

    opps okay it works but i just don't know how to do the math part?
    * Write a description of class WeightOnPlanetsV1 here.
    * @author (your name)
    * @version (a version number or a date)
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Scanner;
    import java.io.PrintWriter;
    import java.io.File;
    import java.io.IOException;
    public class WeightOnPlanetsV1
      public static void main(String[] args) throws IOException
        int planetWidth = 10;
        int gravityWidth = 16;
        int weightWidth = 14;
        String formatString = "%" + planetWidth + "s%" + gravityWidth + "s%"
            + weightWidth + "s%n";
        System.out.printf("%40s\n\n", "My Wight on the Planets");
        System.out.printf(formatString, "Planet", "Gravity", "Weight");
        System.out.printf("---------------------------------------------------%n");
        String[] planets =
          "Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus",
          "Neptune", "Pluto"
            String token = "";
              File fileName = new File("gravity.txt");
              Scanner inFile = new Scanner(fileName);
              List space = new ArrayList();
              while (inFile.hasNext())
                   token = inFile.next();
                   space.add(token);
              inFile.close();
            String token1;
              File fileName1 = new File("gravity.txt");
              Scanner inFile1 = new Scanner(fileName1);
              List space1 = new ArrayList();
              while (inFile1.hasNext())
                  token1 = inFile1.next();
                   space1.add(token1);
              inFile1.close();
        for (int i = 0; i < planets.length; i++)
    System.out.printf(formatString, planets, space.get(i), space1.get(i));

  • Help with adding image onclick

    Hey everyone,
    I am making a simple game in AS3 and need help with adding an image once they have click on something.
    On the left of the screen are sentences and on the right an image of a form. When they click each sentence on the left, writing appears on the form. Its very simple. With this said, what I would like to do is once the user click one of the sentences on the left, I would like a checkmark image to appear over the sentence so they know they have already clicked on it.
    How would I go about adding this to my code?
    var fields:Array = new Array();
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
        fields.push(new one_form());
        fields[fields.length-1].x = 141;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);   
        one_btn.removeEventListener(MouseEvent.CLICK, onClick1a);
        one_btn.buttonMode = false;
        //gotoAndStop("one")
    two_btn.addEventListener(MouseEvent.CLICK, onClick2a);
    two_btn.buttonMode = true;
    function onClick2a(event:MouseEvent):void
        fields.push(new two_form());
        fields[fields.length-1].x = 343.25;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);
        two_btn.removeEventListener(MouseEvent.CLICK, onClick2a);
        two_btn.buttonMode = false;
        //gotoAndStop("two")

    I don't know where you're positioning the button that should enable/disable the checkbox but for "one_btn" let's just say it's at position: x=100, y=200. Say you'd want the checkbox to be to the left of it, so the checkbox would be displayed at: x=50, y=200. Also say you have a checkbox graphic in your library, exported for actionscript with the name "CheckBoxGraphic".
    Using your code with some sprinkles:
    // I'd turn this into a sprite but we'll use the default, MovieClip
    var _checkBox:MovieClip = new CheckBoxGraphic();
    // add to display list but hide
    _checkBox.visible = false;
    // just for optimization
    _checkBox.mouseEnabled = false;
    _checkBox.cacheAsBitmap = true;
    // adding it early so make sure the forms loaded don't overlap the
    // checkbox or it will cover it, otherwise swapping of depths is needed
    addChild(_checkBox);
    // I'll use a flag (a reference for this) to know what button is currently pushed
    var _currentButton:Object;
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
         // Check if this button is currently the pressed button
         if (_currentButton == one_btn)
              // disable checkbox, remove form
              _checkBox.visible = false;
              // form should be last added to fields array, remove
              removeChild(fields[fields.length - 1]);
              fields.pop();
              // clear any reference to this button
              _currentButton = null;
         else
              // enable checkbox
              _checkBox.visible = true;
              _checkBox.x = 50;
              _checkBox.y = 200;
              // add form
              fields.push(new one_form());
              fields[fields.length-1].x = 141;
              fields[fields.length-1].y = -85;
              this.addChild(fields[fields.length-1]);
              // save this button as last clicked
              _currentButton = one_btn;
         // not sure what this is
        //gotoAndStop("one")
    I'd also centralize all the click handlers into a single handler and use the buttons name to branch on what to do, but that's a different discussion. Just see if this makes sense to you.
    The jist is a graphic of a checkbox that is a MovieClip symbol in your library exported to actionscript with the class name CheckBoxGraphic() is created and added to the display list.
    I made a variable that points itself to the last clicked button, when the "on" state is desired. If I detect the last clicked button was this button, I remove the form I added and the checkbox. If the last clicked button is not this button, I enable and position the checkbox as well as add the form.
    What is left to do is handle the sitation where multiple buttons are on the screen. When a new button is pushed it should remove anything the previous button added. This code simply demonstrates clicking the same button multiple times to toggle it "on and off".

  • Help with adding a hyperlink to a button?

    We have a simple little site we built in Catalyst and everything works great. The only problem is that we cannot figure out how to add a hyperlink to one of the buttons in the animation. We simply want to be able to click on the button and go to another site (the client's Facebook page specifically). Can anyone provide some insight? Thanks!

    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact.
    The headers of the message sent from your address are shown below:
    From [email protected] Tue Nov 03 19:08:07 2009
    Received: from mail.sgaur.hosted.jivesoftware.com (209.46.39.252:45105)
    by host.pdgcreative.com with esmtp (Exim 4.69)
    (envelope-from <[email protected]>)
    id 1N5TPy-0001Sp-J1
    for [email protected]; Tue, 03 Nov 2009 19:08:07 -0500
    Received: from sgaurwa43p (unknown 10.137.24.44)
         by mail.sgaur.hosted.jivesoftware.com (Postfix) with ESMTP id 946C5E3018D
         for <[email protected]>; Tue,  3 Nov 2009 17:08:03 -0700 (MST)
    Date: Tue, 03 Nov 2009 17:07:49 -0700
    From: Tvoliter <[email protected]>
    Reply-To: [email protected]
    To: Matthew Pendergraff <[email protected]>
    Message-ID: <299830586.358941257293283616.JavaMail.jive@sgaurwa43p>
    Subject: Help with adding a hyperlink to a button?
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_36702_1132901390.1257293269030"
    Content-Disposition: inline
    X-Spam-Status: No, score=-3.4
    X-Spam-Score: -33
    X-Spam-Bar: ---
    X-Spam-Flag: NO

  • Need help with adding emoji to my hubby's phone don't see it when I click on the keyboard tab

    I need help with adding emoji to my hubby's iPhone when I go to settings then the keyboard tab it's not there

    I did that bad it's not there and doesn't give me to option to click on it

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • How to create a table with datatype blob and insert a pdf file (ravi)

    how to create a table with datatype blob and insert a pdf file,
    give me the explain asap
    1.create the table?
    2.insert the pdffiles into tables?
    3.how to view the files?
    Thanks & Regards
    ravikumar.k
    Edited by: 895044 on Dec 5, 2011 2:55 AM

    895044 wrote:
    how to create a table with datatype blob and insert a pdf file,
    give me the explain asapPerhaps you should read...
    {message:id=9360002}
    especially point 2.
    We're not just sitting here waiting to answer your question as quickly as possible for you.

  • When i convert any file to pdf, date is automatically added in the header in pdf file. How to change

    When i convert any file to pdf, date is automatically added in the header in pdf file. How to change that?*

    heres a screenshot
    heres a screenshot of how i convert them

  • Please HELP! i cannot open any Adobe PDF files anymore. i DL the new version XI and since no files h

    Please HELP! i cannot open any Adobe PDF files anymore. i DL the new version XI and since no files have opened - so i recently uninstalled it and re-installed adobe reader 9 but i am having the same problem - no pdf files open and its really causing a problem as i can not open any work documents. please help

    Three things to try (Reader XI)...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • Archive applet. Help with adding files to archive, then show.

    I need help with this applet: http://pastebin.com/589064
    The user is supposed to add, remove and open archives with text in it.
    My problem is now the highlited area in the code (the lines with the @@'s).
    This button should list all files i have added to the archive, however when i press the button, i only get a numberlisting. eg, if i have added 4 files to the archive I get: 0123
    However I want the Joptionpane to show a listing of the files in the archive.
    When I press "open" i can choose a file, press add, then open a new file, press add, and then when i click show archive, the filenames of the two files i added, should list through a Joptionpane..as you can see, i've tried, but i'm very unfamiliar with this.

    OK..i've done it
    check out http://pastebin.com/589268
    however, now i'd like to change the code, so that if i try to add to files with the same filename, the applet should show an error message..
    How do i do that, please? :-)

  • [CS3 JS] Help with adding textMacros

    I can get a textMacro added with the following.
    app.textMacros.add("myName", "this is some text")
    What I am having trouble with is having the Remember Text Attributes be grabed or set to true.
    Any one know what the syntax is for setting this during the add()
    also how do you insert a macro via a javascript?
    Mahalo
    David

    These forums are pointless. Adobe must believe that other users will cut the mustard. Absolutely a waste of effort for everyone. Adobe should PAY at least a junior developer involved in the projects to monitor and help with these posts. FLEX rules yeah and thousands more do scripting than develop plug ins...
    Come on Adobe, step up your better than this. Customer Service can be free to the customers ... we are not talking about GET IT ALL FREE, talking about buy it and create a community and support it, but then again LAYERS and INDESIGN SECRETS have people who actually want to help users rather than rabbit hole everything.
    Please join hands and SING...

  • Help With Adding Back Up of Songs & Lists on Re-Installed iTunes v 7.0.2

    I have a portable hard drive with a back up of my 10,000 songs. I have to get my Gateway PC laptop serviced as it continues to crash, and so I will need to re-install iTunes v 7.0.2 and then add back my songs from the portable hard drive.
    I need help with a couple of questions:
    1) Is there a quicker way to add the songs back on to iTunes rather than adding individual files (for songs) and individual folders (for albums)?
    2) I have several song lists (some used to make CD's). How can these lists be backed up as well so that I do not have to re-create these lists?
    Any advice very much appreciated.

    There is a good article on backup here:
    http://discussions.apple.com/thread.jspa?messageID=1522195&#1522195
    If all your music is in the iTunes Music folder and you have room, just copy the iTunes folder to your external drive.
    This will include both your music files and the iTunes library files.
    If you music is stored in other places, you need to backup those too. When you restore you need to ensure the full path name is the same.
    Life is also much easier if you can keep exactly the same account name if you reinsall windows as the account name is part of the path to My Documents.

  • Need help with hyperlinks in InDesign CS3 to PDF

    I've done everything I can see in the forums, in the InDesign help and in InDesign for Dummies... but other than spelling out the entire URL in the text (IE where you can see it in the document) I cannot get a URL hyperlink to work after exporting it to a PDF file. The sample document I used does show the link in the hyperlink pallette... I can even use the "forward" and "back" to identify the link in the document and actually open the link online from there. But - the link is not working in the PDF file. What am I doing wrong? I'm totally confused. Normaly, I figure these kinds of things out and this one seemed to be simple/straight forward.
    Thanks!

    If you're not using tagged PDF, then use it. If you are, disable it. Also, make sure you're fully patched to 5.0.4.
    Bob

  • Need help with adding images option

    I was using the add images option a few weeks ago just fine.. using my tablet and uploading the images via usb. then all of the sudden it stopped working.
    please help with this issue.
    Danny

    A few questions. What result are you experiencing? Did PS Touch crash? Have you tried to force quit-and restart PS Touch? -Guido

  • Help with Smartform download - unwanted items showing in file

    Hello Experts,
    I have another problem regarding Smartforms. I am downloading my smartform output in pdf format using the following fm's:
    CONVERT_OTF_2_PDF
    DOWNLOAD
    But when I open the pdf file, there are note-like graphics appearing on the side of the form, something similar to comment notes you place on a word document. I have also tried to substitute CONVERT_OTF_2_PDF with CONVERT_OTF, and DOWNLOAD with GUI_DOWNLOAD. They all produce the same weird error on the form.
    When I preview the smartform, the note-like objects are not there, so I'm assuming there is something weird going on during the downloading process.
    I have read in a thread somewhere here that they have encountered a similar problem, but no specific solution was proposed.
    Can someone please help me?
    Thanks in advance.

    Hi,
    As you are capturing the OTF data from Smartform itself, try using Convert_otf and then GUI_DOWNLOAD Function Modules to download as pdf.
    I am sending you the code.  Please check your code against it and still if you have any doubts i ll clarify it.  You can just copy paste this code and check it.
    DATA: form_name TYPE rs38l_fnam,      " Used to get the function module of Smartform
          wa_ctrlop TYPE ssfctrlop,       " Smart Forms: Control structure
          wa_outopt TYPE ssfcompop,       " SAP Smart Forms: Smart Composer (transfer) options
          t_otfdata TYPE ssfcrescl.       " Smart Forms: Return value at end of form printing
    Data: t_pdf_tab type table of tline,  " SAPscript: Text Lines
          t_otf TYPE table of itcoo.      " OTF Structure
    Variables used to pass to GUI_DOWNLOAD
    DATA: w_filesize TYPE i,
          w_bin_filesize TYPE i.
    Variables used for Save Dialog Box
    DATA : file_name TYPE string,
           file_path TYPE string,
           full_path TYPE string.
    START-OF-SELECTION.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZPDF_G'      "p_name
        IMPORTING
          fm_name            = form_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      wa_ctrlop-getotf = 'X'.
      wa_ctrlop-no_dialog = 'X'.
      wa_outopt-tdnoprev = 'X'.
      CALL FUNCTION form_name
        EXPORTING
          control_parameters = wa_ctrlop
          output_options     = wa_outopt
          user_settings      = 'X'
        IMPORTING
          job_output_info    = t_otfdata
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    END-OF-SELECTION.
      t_otf[] = t_otfdata-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = w_bin_filesize
        TABLES
          otf                   = t_otf
          lines                 = t_pdf_tab
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          OTHERS                = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ----TAKING THE DOWNLOAD FILE PATH AS USER INPUT*
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        CHANGING
          filename             = file_name
          path                 = file_path
          fullpath             = full_path
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Download the file to the selected path
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize            = w_bin_filesize
          filename                = full_path                   "fname1
          filetype                = 'BIN'
        IMPORTING
          filelength              = w_filesize
        TABLES
          data_tab                = t_pdf_tab
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc <> 0.
        MESSAGE i000(zpdf).      "File not downloaded
      ELSE.
        MESSAGE i001(zpdf).      "File downloaded
      ENDIF.
    Reward if useful.
    Thanks,
    Geeta

Maybe you are looking for

  • My website is loading but I get a scroll button to view the page and see only part of my page...

    I am using full screen but the website only loads top 1/3 of page. to view the rest I must scroll down to see content. how do I see the entire application/information on my full screen?

  • IAd Producer download Access Denied

    I have a iOS developer account and i want to download the iAd Producer but it keeps telling me Access Denied. And i cant find any refrence how and why i cant download it. Any tips/links?

  • Illustrator CS4 application not responding after install

    Anyone knows how to slove this problem? I got the creative suite CS4 today and after installed dreamweaver, photoshop, acrobat reader works fine and fast except illustrator. When I opened the application and click on open a file or create a file, the

  • SQL delete statement

    The common way to delete a specific row in a table is: DELETE FROM customerTable WHERE customerName =ABC AND customerID =123; However, are there any other alternative way to delete the specific row instead? Because my problem is i must link the name

  • Speed limit of UDP over gigabit ethernet

    Dear Community, I am trying to stream 10-20MBytes/sec over IP multicast from one LabVIEW application to several others. I think that UDP is probably the best way to go but I was wondering what kinds of network speeds people have been able to achieve?