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]

Similar Messages

  • How to download a page in pdf or doc format

    Hi,
    I want to download a content of page in pdf or doc format through a button.
    How can I acheive it.
    I created a salary page and now want to download this page directly in pdf or doc format, how to do it.
    Using Peopltools 8.49
    PS HRMS 9.0
    plz help.
    Many thanks...

    The entire solution would be too large and complex to post. Here are some pointers to get you going. One alternative is to use BI/XML Publisher to create the output document and launch it from a button on the page (PeopleCode and Derived/Work record). Another alternative is to use Apache POI to generate a doc and iText to generate PDF. Customers have used all of these approaches.

  • How to Convert Blog Page in PDF and Print it Directly?

    Hi,
    I have a technology tips and tricks related blog which is named TechnTechie. I want that my visitors will be able to convert all of my blog pages to PDF and also will be able to print that out with a single click with the pictures in the post. Is it possible to do that? If possible please suggest how to do that? My blog is in WordPress blog and the url is http://techntechie.com
    Thank You
    Himadri Subrah Saha

    You cannot invoke "automatic" printing from the server side. Best what you can do is to download the whole PDF file inline and let the client decide what to do with it. If you really, really want to pick a page out of the PDF file and display that page only, then you should use a PDF reader API for Java to be able to pick a page programmatically. iText is such a PDF reader API for Java. You can find it here: http://sourceforge.net/projects/itext

  • How to renumber the pages in pdf

    I've created a 380-page combined pdf document - how can I renumber the pages from 1 to 380?

    Hello,
    Please refer to following link:
    Acrobat Help | Rotate, move, delete, and renumber PDF pages
    Regards,
    Anoop

  • [solved] How to remove specific pages from PDF file?

    I'm looking for a way to remove few pages from PDF file.
    Last edited by delor (2008-07-04 10:28:22)

    To remove first page I did this:
    pdftk original.pdf cat 2-end output result.pdf
    Any other propositions ?

  • 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.

  • How can I join pages in pdf file?

    There is a pdf document which contains 6 pages.
    I want to place the content of the document on one page pdf (of course, with decreasing the size of pictures) in needed order - like assembling a 2x3 puzzle.
    Does Acrobat have such feature? If yes, how can I use it?
    Thanks a lot.

    Moreover, I need to send that page as a whole by email, so even if the white spaces between parts of picture
    could be removed during printing, it wouldn't be a solution =(
    You can email the new PDF document.

  • How to delete blank pages in pdf

    How do you delete blank pages in a PDF?

    Do note that you cannot delete pages in a PDF with the free Adobe Reader.
    Be well...

  • How to print (save) pages as PDF in Safari?

    I´m running Lion, we´re getting better acquainted. However, with Safari I´m having problems when I try to save a web page as a PDF using the Print-Save PDF options. It tells me the file cannot be saved. I try duplicating, exporting, etc, and the only solution I´ve found is to email the document, which, when attatched to the email arrives as a PDF with no problem whatsoever. This is silly (close to dancing infront of my MacBook Pro with a black chicken spitting rum in all directions). Please help!

    Hi ...
    Might be a plugin causing this..
    Quit Safari.
    Go to /Library/Internet Plug-Ins
    Move the Adobe PDF Browser plugin to the Trash.
    Relaunch Safari.

  • How to rotate the pages of pdf files in acrobat?

    Hi,
    Am having one html file containg PDF files.
    i want to rotate the pages of that pdf file using javascript.
    i wrote some code for that but it is not working.
    case "Rotate":
    nStart = 0;
    nEnd = this.numPages - 1;
    nRotate = 90;
    try
    if (this.numPages > 0)
               this.setPageRotations(nStart , nEnd , nRotate)
    catch(e)
    app.alert("Processing error: "+e)
    break;
    Still no action is happening
    Can anyone can help me to sort this out.

    still get "c\This file can't be previewed" in right pane of Windows Explorer for all PDF files.
    OS is Windows 7 Ultimate, 64 bit.
    Acrobat is 9.0 Standard
    Acrobat Reader XI also installed (ver 11.0.10)
    changed the registry AppID and get same results.
    Any more suggestions?

  • How to batch convert .pages to .pdf  with automator & applescript

    Hi all,
    As the title states, I want to drag and drop one (or a whole stack) of .pages documents onto an automator app, and have it pump out .pdfs...
    Here is my code, it crashes with an error, but I'm really new to this so I don't really know what's going wrong.
    on run {input, parameters}
      tell application "Finder"
      repeat with aFile in input
      if class of (item aFile) is not folder then
      set {tName, fileExt} to {name, name extension} of aFile
      if fileExt is not missing value and fileExt is not "" then
      set tName to "PDFs/" & (text 1 thru -((count fileExt) + 2) of tName) & ".pdf"
      tell (get container of aFile)
      if not (exists folder "PDFs") then make new folder at it with properties {name:"PDFs"}
      tell application "Pages"
      set mydoc to open file aFile -- open input file in Pages
      export mydoc to file tName as PDF --do the exporting
      close mydoc saving no -- close the original file without saving
      end tell
      end tell
      end if
      end if
      end repeat
      end tell
    end run

    mirror318 wrote:
    One more thing, is it easy to change that script so that the output is put in a subfolder called "PDFs" (the folder would go in wherever the .pages file was)?
    This should save to a subfolder called "PDFs" in the Folder where the pages file is located:
    on open fs
      my proceed:fs
    end open
    on proceed:fs
      tell application "Finder"
      repeat with i from 1 to (get count of items in fs)
      if (name extension of item i of fs) is "pages" then
      --set PDFfile to text 1 thru -7 of (item i of fs as text) & ".pdf"
      set PDFfile to name of (item i of fs)
      set PDFfile to text 1 thru -7 of PDFfile & ".pdf"
      if not (exists (parent of (item i of fs) as text) & "PDFs") then
      make new folder at (parent of (item i of fs)) with properties {name:"PDFs"}
      end if
      set PDFfile to (parent of (item i of fs) as text) & "PDFs:" & PDFfile as text
      tell application "Pages"
      set mydoc to open (item i of fs) -- open input file in Pages 
      export mydoc to file PDFfile as PDF --do the exporting 
      close mydoc saving no -- close the original file without saving 
      end tell
      end if
      end repeat
      end tell
    end proceed:

  • How to scan multiple pages to PDF

     On the scan screen I see nothing that will enable me to scan multiple pages to a pdf file. Any clues or tips

    Hi,
    Please try
    Double click printer icon on desktop,
    Select Scan a Document or Photo,
    Put the first page on the glass (face down),
    Check options (size, dpi ...), and select Scan document to file,
    Click Scan - machine will scan the first page
    Remove the first page on the glass, put the second page,
    Click + (plus sign) It sits on the left hand side of a red x
    Machine will scan the second page, put 3rd page on the glass and click + again ..... to the end then click Save
    Click Done after Save
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How do you drag pages from one PDF to replace pages in another?

    In Acrobat Pro CS2 for Macintosh you could drag one or more pages from one PDF, and choose whether to insert them into another PDF, or replace pages in the other PDF.
    To insert them you dropped the dragged pages between two pages in the Pages panel.
    To replace pages in the other PDF you dropped the dragged pages onto a page in the Pages panel.
    I recently upgraded to Acrobat CS5, and this no longer seems to work. All you can do is insert.
    Of course I can then delete the pages I wanted to replace, but it's now much less convenient, and there's more opportunity for error.
    Am I missing something, or has this feature really been removed between CS2 and CS5?

    You still can but you have to press command + option when you cursor is hovering over the page you want to replace. A blue border will appear around the page.
    So select the new page you are bringing in, drag it over to your main document, keeping the mouse pressed down. Hover over the page you want to replace and press command + option. A blue box will appear around the page. Let go of the mouse and you will get your confirmation message. Press OK, and you are good to go.

  • How do I add pages to a pdf file?

    I am new to iMac.
    I am used to using Adobe Acrobat for Windows to create pdf files. In Acrobat, when you scan a page, you have the option to add the page to an existing pdf file.
    I know how to use the Scan feature on Print & Fax to create pdf files on the iMac.
    I can not figure out how to make a pdf more than one page (unless I use the document feeder to scan in a multiple pages at once.) When I use the flat bed scanner, I can not figure out how to scan another page into the same file.
    I also can not figure out how to add another page to an existing pdf file.
    It does not appear Adobe Acrobat is available for the Mac, just Adobe reader. If it was, I would just buy that.
    Does anyone know how to do these two things, or a program that can?
    Thanks,
    -Lee
    Message was edited by: Lee from Cincinnati

    Wayne of America wrote:
    That's an interesting response. I use the Adobe Creative Suite all day every day, including Acrobat Pro...
    ... without any problems. Ever.
    Without any problems? Ever?
    You mean it didn't take over your printing system and force you to use it?
    It didn't break print to PDF functionality?
    It didn't install a bunch of software you didn't want and then promptly abandon half of it?
    It doesn't report an error if you try to remove the software that Adobe disabled 4 minutes after you bought it?
    It doesn't continually ask you to register your software and continue to ask no matter how many times you register?
    It doesn't continually tell you there are Adobe RAW updates that you need to install, even though you don't use that and don't want it, and tell it to ignore.
    It doesn't report an error when you give up and tell it to install the Adobe RAW update?
    Acrobat contains features that are useful and very much needed in a desktop publishing environment.
    As do many other competing programs. Apple Preview can generate perfectly good PDFs and is more than adequate for the vast majority of users. PDFClerk can do things Acrobat could never dream of.
    I have no experience of Acrobat Reader on the Mac so I can't comment on that.
    I do, so I will comment. It is slow, bloated, and very poorly written software. It must be updated weekly due to cross-platform security flaws that are actively being exploited. Even if you do install it to use some Adobe-only feature, you may wind up having to run Acrobat in Windows because the Mac version's output is so bad.
    All of the items I've listed here are just my personal experience. If you want more, just use the Apple Discussions search feature. Unfortunately, I haven't found an adequate replacement for Photoshop, so I still have that installed. Preview, however, is much better than Adobe Reader.

  • 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  

Maybe you are looking for

  • ABAP Web Service client proxy - generation problems

    Hi! I tried to create an ABAP web service client proxy for many different web services - for instance some of that listed at <a href="http://www.xmethods.net/">http://www.xmethods.net/</a> . Almost on 99% of the WSDLs the client proxy generation fail

  • WRT54GS won't connect my static IP computer to internet

    My goal is to get completely connected to a torrent site. Their instructions were to configure a static address for my computer, forward a port and life will be good. My current setup is my computer is wired to a WRT54GS which in turn is wired to an

  • Q10 Notifications time do not correctly follow providers timezone

    Hello, Ever since I traveled to Venezuela whos time zone is 4.5 hours Caracas time, I've had problems with the time on my Q10. I set my providers date and time automatically and it does. The problem is that all my messages in Hub arrive with a differ

  • Special GL Payment Block

    Hi, Can anyone advise how a line item relating to a Special GL Indicator with a Credit Amount can be entered with a Payment Block at the time of entry/posting itself. In other words, what configuration need to be done in SPRO (Posting Key? Special GL

  • Best practices for a multi-language application

    Hi, I'm planning to develop an application to work in two different countries and I'm hopping to get some feedback from this community on the best practices to follow when building the application. The application will run in two different languages