Using Replace Pages in accessible PDF's

Hi - Brand new to this forum.  Hoping someone can help... I have an existing tagged and accessible PDF - needed content update, so did that in Word, created a new tagged and accessible PDF, and used Replace pages to insert the new pages into the existing PDF.  Acrobat Help says when you replace pages in a PDF, Acrobat adds the tags from the incoming pages to the end of the tag tree... and keeps the tags for the replaced pages.   That didn't happen - the tags from the incoming pages are not there and, in fact, the tags that were in the existing PDF are not there anymore either - now it just says "Warning, empty page".   Any ideas?

Hi kvd,
I guess my nomenclature may be presumptive. All I should have said is that the most appropriate method I have discovered for retaining tagging and all other accessibility functionality has been the Combine command. Replace Pages sometimes works and most of the time (lately) is doesn’t. My experience with Insert Pages has not been consistently successful either.
What you mean by a workflow I don’t fully understand. Do you mean an automated action? Unless you consistently use the same page numbers in every document, I don't know how you could automate it. Also, I have not been able to find specific process treatment about combining tagged PDFs. This has been a result of testing and experimentation.
Let me know if you have any other questions.

Similar Messages

  • Replacing pages in accessible PDF's

    Hi - Brand new to this forum.  Hoping someone can help... I have an existing tagged, tested and accessible PDF - needed content update, so did that in Word, created a new tagged, tested and accessible PDF, and used Replace pages to insert the new pages into the existing PDF.  Acrobat Help says when you replace pages in a PDF, Acrobat adds the tags from the incoming pages to the end of the tag tree... and keeps the tags for the replaced pages.   That didn't happen - the tags from the incoming pages are not there and, in fact, the tags that were in the existing PDF are not there anymore either - now it just says "Warning, empty page".   Any ideas?
    Thanks greatly!

    Hi Bill@VT,
    Thanks for your response.  Presently, I have AA Pro XI and Word 2007.  I am confused - it seems the Adobe help material is saying different things - my pages say the new tags will come with the new pages, and your pages say not? 
    I am suspecting some of the problem may be coming from the fact that these documents have been created over many years using various versions of Word and Adobe Acrobat - since I got Pro XI, some pdf's that used to work OK for our people using screen reader technology suddenly don't read correctly anymore.  I need to repair anything not working, and I need to create a new workflow process for myself to create accessible Word documents from the start.   I'm thinking it may be cleaner to just start over and create all brand new Word documents with accessibility, maybe in Word 2010 or 2013, and then run them through Adobe Acrobat "Make Accessible" function and checker. 

  • Replace pages in a PDF with acrobat

    Please help me find a solution for my problem, i believe there are many good Applescript gurus here, i´m not one of them!:)
    Basic needs:
    i have a pdf coming from a text and picture system and i want it to merge to a templet with buttons and functionality.
    same amount of pages to replace every time.
    If i do this in Acrobat 8 i just open my template, i go to Document->Replace Pages, selected replace from 1-24 and execute.
    Is this possible in applescript? i can se the argument in the Acrobat Library, but i don´t know how!
    Please post a solution if you can.
    Best regards
    Inge

    Hello Inge Eidem,
    If I'm not much mistaken about your intention, the following script may help.
    A few things.
    • I'm not sure but you seem to be deleting the template 'ipdfmal.pdf' every time the folder action is triggered and I presume that it's probably not your intention, so I modified the code a bit. (It would now delete the finished source files, that are dropped files in the folder where the folder action is attached, when you enable the corresponding lines which I currently commented out)
    • The tempalte file is to be found at templateFdPath and the finished files are to be saved in finishedFdPath.
    • The script is NOT tested, for I don't have Acrobat Professional v8.
    • You can find some essential documents at Adobe's site:
    (See p.161 of 'Interapplication Communication API Reference' for 'save' command syntax and example)
    * Acrobat Developer Center : Interapplication communication
    http://www.adobe.com/devnet/acrobat/interapplication.html
    * Interapplication Communication API Reference
    http://www.adobe.com/devnet/acrobat/pdfs/iacapireference.pdf
    Good luck,
    H
    -- SCRIPT
    on adding folder items to thefolder after receiving theAddedItems
    set rootFdPath to (path to desktop folder from user domain) as string -- # root folder path
    set templateFdPath to rootFdPath & "template:" -- # template folder path
    set finishedFdPath to rootFdPath & "finished:" -- # finished folder path
    set templateName to "ipdfmal.pdf" -- # template file name
    set templateFile to (templateFdPath & templateName) as alias
    repeat with i from 1 to (count theAddedItems) -- note that theAddedItems is generally a list of aliases
    set addedItem to item i of theAddedItems
    -- get source file name
    try
    set oldDelims to AppleScript's text item delimiters
    set AppleScript's text item delimiters to {":"}
    set addedItemName to last text item of (addedItem as text)
    set AppleScript's text item delimiters to oldDelims
    on error errs number errn
    set AppleScript's text item delimiters to oldDelims -- always guarantee to reset ASTID
    error errs number errn
    end
    tell application "Adobe Acrobat Professional"
    -- activate -- avoid this, if possible, in such processes launched in background as in folder action
    -- open source
    open addedItem
    -- open template
    open templateFile
    -- merge source pages to template
    replace pages document templateName over 1 ¬
    from document addedItemName starting with 1 number of pages 25
    -- close source document
    close document addedItemName
    -- save merged template as new file named after source file
    save document templateName to file (finishedFdPath & addedItemName)
    -- close renamed template document
    (* in case template document name is set to new name in previous 'save as' *)
    close document addedItemName saving no
    -- (OR) close template document
    (* in case template document name is NOT set to new name in previous 'save as' *)
    -- close document templateName saving no
    end tell
    -- delete each finished source file
    -- tell application "Finder" to delete addedItem
    end repeat
    -- empty trash
    -- tell application "Finder" to empty trash
    end adding folder items to
    -- END OF SCRIPT
      Mac OS 9.1.x  

  • How to replace pages in multiple PDF kits at once

    Here is what I have:
    Multiple documents I have merged into a single PDF. I'll call these a kit. I have about 200 kits. Each kit holds some documents that are unique to it and other documents which are universal to every kit.
    Here is what I do:
    When a document that is universal to each kit is updated or changed in any way I have been going into each and every kit, deleting the page(s) that document was associated with and inserting the updated document.
    Here is what I want to do:
    Have a script or a program or anything that will simplify this process. Is there any way to tell the batch of PDF kits to delete a section and replace it with a new document all at once?
    Any feedback is appreciated!

    It's probably possible, depending very much on the way you set up you "kits" and if it's possible to identify the pages you want to replace based on page number, content, or something similar.
    Also, you will need to have a version of Acrobat that has batch proccessing capabilities (typically the Pro versions).
    I can probably create such a script for you. Contact me by email or PM for more info.

  • How do I replace pages in a PDF?

    I converted a document but one page is a draft and I need to delete and add the final page to the document, how can I do that?

    Hi imberelawd,
    Using Acrobat XI you can do it. Please check the steps on screen shot attached with this reply:
    Regards,
    Ajlan Huda.

  • Shortcut Method for Replace Pages dialog box

    What is the keyboard shortcut method for bringing up the Replaces Pages dialog box.  I use Replace Pages function a lot in preparing PDF documents and need a faster method than using Mouse on Tools right sidebar.  I note that shortcut key for inserting pages is Cntrl-Shift-I   --  what is shortcut for Replace Pages.  In previous Acrobat 9, I could use  alt-DNR, which brought up Replaces Pages dialog box via the menu, but there no longer is a Document item in the menu bar -- it has been removed.  Please, this is VERY important to me.  Any help will be greatly appreciated.

    Thank you for your quick reply.  You have confirmed my worst fear.  But anyway -- going forward .....  in your opinion, what is the best way to get information to Adobe on ideas for improvement so that future version or maybe even an update for this version could have something like what I need, that is, shortcut key for Replace Pages -- or ability to access customized quick tools via keyboard, etc.  Is there someone keeping a list of these things that I can write to?  Thanks again.  (And don't worry, I won't extend this discussion past your hoped-for reply.)

  • How can I create an accessible PDF using Pages?

    I am interested in being able to use Pages (and actually also Keynote) to produce accessible PDF documents, ideally following the PDF/UA standard.
    Government agencies require that electronic is created and shared in an accessible fashion.
    I know it is possible to create accessible PDF (or well-tagged PDF) in Microsoft Word - but only on Windows unfortunately. I could also use OpenOffice, but to be honestly I find Pages is the more productive tool for me.
    Any pointers as to whether and how to create accessible PDF from Pages would be more than welcome....
    Olaf

    Hi there, I suppose I didn't make myself very clear. I am working for a regional organization for persons with disabilities and we create publications that are accessible to various kinds of disability, i.e. deaf, blind, etc. We convert ordinary reports to accessible text for the benefit of the blind. There are programs/apps that provide sound/voices that will 'read' the text. Acrobat PDF has such a feature called 'Readable PDF', which if composed properly via tagging, etc, will be converted and saved as 'readable PDF'. You can do this using In-Design. But I am also looking at the possibilities for Pages (I like this program a lot because it's easy) but I am not sure if there are tagging features here that will allow be to prepare the report as a 'Readable PDF' file. Thanks!

  • How do I scan multiple pages into one pdf file using the PIXMA MG7520 on Windows 8.0? Please help!

    I recently received a PIXMA MG7520 for a gift.  It works great with my lenovo laptop/tablet running on Windos 8.0.  The one drawback to the HP all-in-one that it replaced is it does not have an ADF.  That being said, there must be some way to scan multiple pages into one pdf file.  I need help figuring thing out.  Thanks in advance!
    Solved!
    Go to Solution.

    Hi mdtolbert54,
    There is a program that comes with the printer called the IJ Scan Utility that can assist you with scanning multiple pages into a single PDF document.  To do this, please follow these steps:
    1. On your keyboard, press the Windows key.
    2. Start typing IJ SCAN UTILITY. The search window opens as you type. Once the IJ SCAN UTILITY is displayed, please select and open it.
    3. In the Canon IJ Scan Utility window that opens, click SETTINGS.... in the bottom right of the window. The Settings dialog box appears.
    4. Click the DOCUMENT SCAN option on the left pane of the window.
    5. In the SAVE SETTINGS section of the window, you will select the save format and location of the document you are about to scan.
    a.) In the FILE NAME field, specify the name you would like to give the file. By default the filename will begin with IMG; you can remove IMG and change it to whatever you would like to name the file.
    b.) In the DATA FORMAT field, use the drop-down arrow to select the PDF (Multiple Pages) option. 
    c.) In the SAVE IN field, please navigate to the area where you would like the file to be saved once it is scanned in. By default, the file will be saved in the MY DOCUMENTS folder.
    6. Once all settings have been selected, click the OK button at the bottom of the window to save the changes. The IJ Scan Utility main screen appears.
    7. Click the DOCUMENT button. Scanning starts. Click the CANCEL button to cancel scanning if needed. Scanned items are saved in previously selected folder location specified in the SETTINGS... window.
    If you find that you need advanced scanning options such as adjusting resolution, brightness, contrast, saturation, color balance, etc. in addition to the options selected above, please click on the SCANGEAR button on the IJ Scan Utility Main screen, then adjust the items as necessary.
    Once the items above are set for document scanning, in the future, you will only need to launch the IJ Scan Utility, then press the DOCUMENT button to perform the scan (unless you want to make changes to the settings).
    Hope this helps!
    This didn't answer your question or issue? Please call or email us using one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Create accessible pdf from html pages dynamically

    Hello,
    I am trying to create a 508 compliant Pdf from a simple HTML page using the HTML to Pdf feature in Livecycle ES4 server. I was able to configure the service to generate tabbed Pdf, but the created Pdf has multiple accessibility issues.
    Some of the issues encountered are:  incorrect tab order,  some links are not tabbable while others are,  link text is being read “Blank”,  some text is skipped while tabbing,  missing alt text for images,  page being rendered in the responsive(mobile) view,  etc.
    I have tried both the available approaches, of 1) providing a URL to create the PDF, and 2) to send the html document as a zipped file, with same results.
    Attached is a sample PDF generated from a simple HTML page I created for demo.
    My questions are:
    Is it possible to generate 508 compliant (accessible) Pdf documents using Html to Pdf service from Pdf Generator? If yes, which settings might I be missing?
    Is there any other service provided by Adobe Livecycle Server that can generate 508 compliant Pdf documents from a 508 compliant HTML page?
    Your help is much appreciated.
    Thanks,
    Anup

    I created a tool that does just that (only you will need to enter the page numbers as text, it does not work by selecting them):
    Acrobat -- Extract Non-Sequential Pages: http://try67.blogspot.com/2011/04/acrobat-extract-non-sequential-pages.html

  • Create accessible pdf from html page

    Hello,
    I am trying to create a 508 compliant Pdf from a simple HTML page using the HTML to Pdf feature in Livecycle ES4 server. I was able to configure the service to generate tabbed Pdf, but the created Pdf has multiple accessibility issues.
    Some of the issues encountered are:  incorrect tab order,  some links are not tabbable while others are,  link text is being read “Blank”,  some text is skipped while tabbing,  missing alt text for images,  page being rendered in the responsive(mobile) view,  etc.
    I have tried both the available approaches, of 1) providing a URL to create the PDF, and 2) to send the html document as a zipped file, with same results.
    Attached is a sample PDF generated from a simple HTML page I created for demo.
    My questions are:
    Is it possible to generate 508 compliant (accessible) Pdf documents using Html to Pdf service from Pdf Generator? If yes, which settings might I be missing?
    Is there any other service provided by Adobe Livecycle Server that can generate 508 compliant Pdf documents from a 508 compliant HTML page?
    Your help is much appreciated.
    Thanks,
    Anup

    I don't think it's possible to do this using a standard JavaScript script in Acrobat, since the newDoc function doesn't work with URLs.
    The only option I can think of is to use an external automator that will call the Create PDF From Web Page dialog, paste the address from a file, and after the PDF file is created will continue to the next line.
    I might be able to create such a tool for you. If you're interested, contact me by email (click my username for the address) or PM.

  • Why I am losing aspects of the PDF after replacing pages?

    Hi,
    I am using Adobe Acrobat 9 Pro with Windows 7, and I want to replace certain pages in one PDF with certain pages from another PDF. The pages are replaced, but anything that was added with the typewriter is lost in the pages I'm replacing. In other words, it replaces the pages, but does not copy across the page numbers and a few other additions that I made with the typewriter. Am I doing something wrong or is the program not capable of carrying across the additions? I am desperate & would appreciate any help! Thanks.

    First of all, this forum is about Adobe Reader. The Acrobat forums are located here: http://forums.adobe.com/community/acrobat
    Regarding your question: Try to flatten the file before copying the pages over. Doing so makes your edits an integral part of the PDF page and should cause them to carry over.

  • Looking for Javascript to replace 'selected' pages in a pdf?

    Hi
    I've searched the web looking for a solution to a time consuming issue without luck. I have multi-page, print ready pdfs - but have to make corrections to a number of 'random' pages in InDesign. I have to replace only the random corrected pages in the standing pdf.
    An ideal solution would be a script that could launch an interface allowing input of the corrected page numbers eg: 3,5,14,56,92,146, together with a facility to select the corrected file/or files to replace pages, page number for page number in the print ready pdf. Does anyone know of a solution or possible starting point?
    MTIA

    Hi,
    Have you tried transforming this using XSLT?
    Regards
    Ayyapparaj

  • How do I replace pages in pdf

    I've watched the on-line tutorials regarding page replacement in a pdf file with no success. Each set of directions tells me to open the PDF document I want to replace, and then "choose Document > Replace Pages".
    I have no "Document" toolbar at the top of my pdf page. I'm using Adobe Reader x (10.1.2)

    Ah, that makes total sense.  Thanks for the prompt reply.
    [private information removed]

  • Using Acrobat Pro X on windows 7.  The replace pages feature does not work.  Is this a known issue? Is there a fix?

    Using Acrobat Pro X on windows 7.  The replace pages feature does not work.  Is this a known issue? Is there a fix?

    Hi Todd,
    I haven't heard other reports of this (though there was an issue quite some time ago where deleting pages on this combination of Acrobat/OS was challenging).
    Can you please tell me what happens when you try to replace pages? Do you get an error message? Are you able to manipulate pages otherwise (delete, extract, and so on)? Is this issue unique to one file, or does it happen with all PDF files?
    I look forward to hearing back from you.
    Best,
    Sara

  • I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    If you could drag and drop pages before, it wasn't in Reader. You no doubt had Adobe Acrobat (Pro or Standard) which shouldn't be confused with Adobe Acrobat Reader. They recently added Acrobat to the name of Adobe Reader so the confusion about which product you had and/or have is understandable.

Maybe you are looking for

  • I can't update iPhoto after upgrading to Mavericks

    I have searched everywhere for my iLife '11 disc and can't find it.  App Store says I must update iPhoto, iMovie etc, but won't accept my Apple id.  Can't talk to apple support without first agreeing to pay $60!!. Can someone tell me what to do next?

  • Read CSV file each field is enveloped within double quotes

    Hi All, I have a txt file in Apps server which is separated by comma but each values are in double quotes. Reason some text fields might have comma as value and not as separator Example:- "00601100001","","","","","BIJOUTERIE ,SARAH III","","1500" Ho

  • Encoder quality

    What am I doing wrong? I am trying to move to AME and forget about Compressor, but I just can't quit Compressor! I did an encode, matched my Compressor settings in AME, and AME gave me terrible results. Whether I checked Maximum Depth or Maximum Rend

  • COLOR MODE

    I am in color cartrigde mode and can copy a black and white form fine. But when I try to print from my wireless windows 8 laptop, error message no toner/ink appears and the print is put on hold.

  • How Do I Prep Larger Than 4K "Stills" for Final Cut Pro?

    Gentleman, Im having a problem exporting my sequence because there is a JPEG which has RGB Color Space that is larger than 4K and apparently Final Cut Pro only will export images that are 4K or Smaller. How do I reduce the size of this Images Color S