How to combine PDFs into a single PDF and preserve links between original PDFs within single PDF

Acrobat Pro can combine multiple PDF files into one PDF file.
However, during this process not all links are supported.
Links within the individual PDF files that are combined seem to work in the single resulting PDF file.
Links that were between the individual PDF files when combined do not seem to work in the single resulting PDF file.
Combining the PDF files should support the links that were btween the original individual PDF files in the resulting single PDF file.
How can this be done?

Sorry, not possible.

Similar Messages

  • When i import my AutoCad PDF into photoshop my lines and text become blurry. How do i fix this

    When i import my AutoCad PDF into photoshop my lines and text become blurry. How do i fix this?
    Is it resizing as I import it  or maybe a printer thing?

    It is rasterizing the PDF at the resolution you tell it to, unless it's an image only PDF - then the image will be opened as-is.

  • HT2506 After I save my pdf document, the links to different pages within the pdf take me to the wrong page. How do I fix it?

    After I save my pdf document, the links to different pages within the pdf take me to the wrong page. How do I fix it?

    May you please elaborate... How are you creating the pdf documents (procedure, software, etc.)? How are you inserting links into your documents?... etc., etc.

  • Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    it seems my subscription had expired so I signed up again.. It was still having trouble so I repeated the sign up process again.. Then it worked perfectly.. Unfortunately, I think I just subscribed twice and need to cancel one of them. Ugh. Such a pain when I'm trying to get this project completed. I'll be canceling at least one of the subscriptions in the morning. Adobe is not my favorite company right now. None of this was intuitive. And trying to get help was an absolute waste of an hour.
    Regards,
    Nathaniel
    [removed by moderator]

  • Is there a way to import a .pdf into a pages document and have it wrap to a 2nd page?

    Is there a way to import a .pdf into a pages document and have it wrap to a 2nd page?

    Are we talking about a spread? ie the pdf spans 2 pages side by side? Like in a magazine centrefold.
    That requires you to insert the pdf on both pages, one hanging half over to the right and the other half over to the left.
    Peter

  • How do I import my edge animation in indesign so that it can play within a PDF file

    how do I import my edge animation in indesign so that it can play within a PDF file??
    Plz help.

    Hi there,
      Have you tried reading this tutorial on exporting Edge Animate files to be used in InDesign?
    http://www.adobe.com/devnet/digitalpublishingsuite/articles/enhancing-your-dps-folios-with -edge-animations.edu.html
      Edge Animate files can be played in DPS folios. PDFs are not capable of playing Edge Animate files at this time. I did find a work around to get SWF files to play in PDF documents:
    http://indesignsecrets.com/how-to-get-animations-to-work-in-pdf-working-title.php
      I hope this helps!

  • How do I create an Lightroom HTML Gallery and preserve the - in the file name?

    How do I create an Lightroom HTML Gallery and preserve the - in the file name?
    The hyphen (-) is more search engine friendly, so I label all my photos using hyphens (-) to separate the keywords in the file name
    Here's a sample file name - it's for the "Guess Where Berkeley" flickr site
    guess-where-berkeley-serkes-xx-s-curve.jpg
    I created a Lightroom HTML Gallery and posted it to the following link.
    http://www.berkeleyhomes.com/tests/lightroom/lightroom-test-1/
    Though it looksl like the HML gallery shows the original file name in the web page, it looks like Adobe Lightroom modified each photo's file name by changing the - (hyphen) to an underscore (_)
    Originally
    guess-where-berkeley-serkes-xx-s-curve.jpg
    After Adobe created the HTML photo gallery the name became
    guess_where_berkeley_serkes_xx_s_curve.jpg
    Is there any way to preserve the – rather than the _ character
    Thank you!
    Ira Serkes

    InDesign's interactive PDF support is a small subset of what you can do in Acrobat Profesional.
    I think you probably want to create a button (or change an existing button) in Acrobat Pro that causes Acrobat to close the document -- that should be analagous to "exitting the CD." I assume your autorun file is opening the PDF in Adobe Reader? You have not included it and are not specific, so it is tough to say.
    I believe in Acrobat Javascript you can close the document with this.closeDoc(). You'll probaly need to ask on the Acrobat forums (possiby Acrobat Scripting) for more detail.

  • Combining PDFs into one using c# and acobat x

    Hi
    How can i combine multiple PDFs into one using Acrobat X, but control it all through c#
    Thanks

    A user will have the application open on their machine.  The application scans relevant folders looking for the documents, and when it finds all the ones it needs it needs to open them and compuile them into one PDF.  They are Hyperion reports.  The human --> Acrobat needs to go, as the trigger is the files being present.
    It is a windows form application in C# that will sit in the tray, just doing what it needs to when it needs to.
    Not on a server, as one employee needs to check when done and scan for a sense check on the compiled report.
    Hope this helps.

  • How to store pdf into blob, index it and search it?

    I am trying to store pdf into a column, index the column and search it.
    I store pdf file into blob column with either the following code or with an interface in apex
    declare
    Dest_loc BLOB;
    Src_loc BFILE := BFILENAME('DIR_TESTCASE', 'intermedia.pdf');
    BEGIN
    INSERT INTO pdffiles(id, description)
    VALUES(1, 'InterMedia Concepts')
    RETURN text INTO Dest_loc;
    DBMS_LOB.FILEOPEN(Src_loc, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.LOADFROMFILE(Dest_loc, Src_loc, dbms_lob.getlength(Src_loc));
    DBMS_LOB.FILECLOSE(Src_loc);
    COMMIT;
    END;
    then i need to create an index
    begin
    ctx_ddl.create_preference('pdf
    lexer', 'BASICLEXER');
    ctx_ddl.set_attribute('pdf_lexer', 'printjoins', '_-');
    end;
    create index PDFFILES_TEXT on PDFFILES(TEXT) indextype is ctxsys.context
    parameters ('lexer pdf_lexer');
    sqlplus says index created but windows gives an error and closes ctxhx.exe
    and of cource when I tried to make a search like
    select id, description
    from pdffiles
    where contains(text,'Oracle') > 0;
    it doesn't return any results.
    My database is 10g XE, I also tried it on Oracle 10.2.0.3 EE

    It is possible to store pdf and doc files in a blob column, create a text index, and search them, and display them. However, you cannot expect to just select doc and pdf data directly from a blob column and expect to be able to read it, due to all of the special formatting characters. You need to use ctx_doc.snippet or ctx_doc.markup or some such thing to format it and make it readable. Please see the demonstration below. You can search the online documentation for complete syntax, additional information, and examples.
    SCOTT@orcl_11g> CREATE TABLE my_files
      2    (id   NUMBER,
      3       doc  BLOB)
      4  /
    Table created.
    SCOTT@orcl_11g> CREATE OR REPLACE DIRECTORY DIR_TESTCASE AS 'c:\oracle11g'
      2  /
    Directory created.
    SCOTT@orcl_11g> declare
      2    Dest_loc BLOB;
      3    Src_loc     BFILE;
      4  BEGIN
      5    INSERT INTO my_files (id, doc) VALUES (1, EMPTY_BLOB())
      6    RETURNING doc INTO Dest_loc;
      7    Src_loc := BFILENAME ('DIR_TESTCASE', 'banana.pdf');
      8    DBMS_LOB.FILEOPEN (Src_loc, DBMS_LOB.LOB_READONLY);
      9    DBMS_LOB.LOADFROMFILE (Dest_loc, Src_loc, dbms_lob.getlength (Src_loc));
    10    DBMS_LOB.FILECLOSE (Src_loc);
    11    INSERT INTO my_files (id, doc) VALUES (2, EMPTY_BLOB())
    12    RETURNING doc INTO Dest_loc;
    13    Src_loc := BFILENAME ('DIR_TESTCASE', 'test1.doc');
    14    DBMS_LOB.FILEOPEN (Src_loc, DBMS_LOB.LOB_READONLY);
    15    DBMS_LOB.LOADFROMFILE (Dest_loc, Src_loc, dbms_lob.getlength (Src_loc));
    16    DBMS_LOB.FILECLOSE (Src_loc);
    17  END;
    18  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11g> INSERT INTO my_files (id, doc)
      2  VALUES (3, UTL_RAW.CAST_TO_RAW ('blob data for id 3'))
      3  /
    1 row created.
    SCOTT@orcl_11g> COMMIT
      2  /
    Commit complete.
    SCOTT@orcl_11g> SELECT id, DBMS_LOB.GETLENGTH (doc) FROM my_files
      2  /
            ID DBMS_LOB.GETLENGTH(DOC)
             1                  222824
             2                   19968
             3                      18
    SCOTT@orcl_11g> CREATE INDEX my_files_idx ON my_files(doc)
      2       INDEXTYPE IS CTXSYS.CONTEXT
      3  /
    Index created.
    SCOTT@orcl_11g> SELECT COUNT (*) FROM dr$my_files_idx$i
      2  /
      COUNT(*)
           308
    SCOTT@orcl_11g> COLUMN first_45 FORMAT A45
    SCOTT@orcl_11g> SELECT id,
      2           UTL_RAW.CAST_TO_VARCHAR2 (DBMS_LOB.SUBSTR (doc, 18, 1)) AS first_45
      3  FROM   my_files
      4  /
            ID FIRST_45
             1 %PDF-1.5
    %âãÏÓ
               1
             2 ÐÏࡱá
             3 blob data for id 3
    SCOTT@orcl_11g> EXEC CTX_DOC.SET_KEY_TYPE ('ROWID')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11g> COLUMN keywords_in_context FORMAT A45 WORD_WRAPPED
    SCOTT@orcl_11g> SELECT id,
      2           CTX_DOC.SNIPPET
      3             ('MY_FILES_IDX',
      4              ROWID,
      5              'contents OR (fruit of the month) OR data',
      6              '<<',
      7              '>>')
      8             AS keywords_in_context
      9  FROM   my_files
    10  WHERE  CONTAINS (doc, 'contents OR (fruit of the month) OR data') > 0
    11  /
            ID KEYWORDS_IN_CONTEXT
             1 <<Fruit of the Month>>
               Banana
               Bananas are the most popular
             2 This is the original <<contents>> of
               test1.doc.
             3 blob <<data>> for id 3
    SCOTT@orcl_11g>

  • Combined PDF's and created links to original PDF's

    Combined multiple PDF's from several individuals into on E-book.  I also create a table of contents with links to original PDF's within the combined document.  Problem is that each link opens in a different magnification. Page 1 is 100%, 1st link 93%, 5 link 56%, etc.  Is it possible to have all pages open with the same magnification? (i.e. all open @ 100%).
    Thanks in advance.

    If the combined PDFs are within a single PDF file —
    Use the Link Action "Go to a page view".
    As the Create Go to View dialog states:
    "Use the scrollbars, mouse, and zoom tools to select the target view..."
    During this activity you can establish the desired zoom (page magnification of 100%).
    Once the activity is complete, click the Set Link button.
    Be well...

  • HT1212 my daughter forgot her passcode to her ipad mini.  How do i get into the ipad mini and reset the passcode

    my daughter forgot her passcode to her ipad mini.  How do I get into the ipad so I can reset it.
    thanks

    You will need to try to restore your iPad from the same computer that you most recently synced to.
    Read this: http://support.apple.com/kb/ht1212
    If you can't do the restore then you will need to try Recovery Mode.
    Read this: http://support.apple.com/kb/ht1808
    Follow the instructions very carefully.

  • How to import photos from Mail to iPhoto and preserve the date created?

    I have several photos sent to me via email attachments in Mail which I want to "add to iphoto."  When I do this, the original date of the photo changes to "today's date." 
    When I drag the photo to the desk top, the file (photo) properties change and the date changes to "today's date."
    Is there a way to import photos and preserve the original date the photo was taken?  For example,  if my family finally got around to sending me photos from 4th of July, I know the date is 7/4/2012, not today's date, 10/9/2012. 
    I want to avoid the time/work of doing batch changes on countless photos I want to add to iphoto. 
    iphoto 11
    mail 5.3
    Lion 10.7.5

    Larry, I need more information...
    Using what you said, I ran some tests using photos taken with my digital camera in iPhoto.  My photos show the following information in the "information" sidebar:
    •type of camera
    •Flash on
    •Format size
    •File size (MB)
    •File type (jpeg)
    •Frame "number"
    •Month/day/year/hour/min/sec/AM-PM
    Then I tried to email a photo to myself:  I have tried:  "share," "attach," "drag/drop" a photo into email and sent it to myself as a test.  Once the photo arrives in my Mail inbox, I have tried various ways to add this "test" photo into iPhoto:
    "Add to iphoto"
    "drag into iphoto"
    "export into iphoto"
    Each time, iphoto created the photo with "today's date."  In the past, I would get an alert:  Photo already exists in iphoto, do you still want to import?  Duplicate or Cancel
    Can you elaborate on, "if the photo properties are present and correctly formatted then iPhoto uses them."
    When I drag a photo to the desktop and double-click to preview the photo, the top of the preview window says:
    P1009.jpg -- locked (gray lettering of the word "locked")
    Is there a setting I need to change to "unlock" the properties of my photos?*
    Thanks!!
    MG
    *My original post focuses on importing photos sent from other people.  I am hoping if I can solve the matter with my own photos, other photos will import with original dates created, too.

  • How do I break up a large PDF into 8"x11" pieces and print?

    I downloaded a super large PDF map that probably has to be split into at least ten 8.5"x11" pages in order to print
    (and then i will have to splice/tape the printed pages together, to form the map).
    So my question is:
    How do I tell Photoshop (or just Acrobat??) to split the massive image up, so that it prints in pieces properly onto 8x11 pages?
    thank you for any advice!

    Tools - Pages - Split Document - Number of Pages: 2

  • How to combine objects into one

    Can I combine two or more objects (say, text box and rectangle) so that they effectively become one object? Other software calls this Grouping of objects.

    Welcome to the Apple Discussions. See Old Toad's Tutorial #7 - Converting Photos w/Frames, Drop Shadows and/or Reflections into a Single JPG Image. It describes exactly what you want to do.
    OT

  • I have a subscription to adobe export pdf; i have changed computers and now i would like the adobe export pdf on the new computer -- how do i download the adobe export pdf?

    i want to know how do you download adobe export pdf on to a new computer?@

    There is nothing to download for ExportPDF. Simply go to https://cloud.acrobat.com/exportpdf, and sign in with your Adobe ID. Once there, you can use ExportPDF.

Maybe you are looking for

  • PR to be deleted after PO release strategy with pr.

    Hi,expert some pr to be deleted as release strategy already trigered as well as po had been done. Pls help.Any suggestion?

  • LR3 - PS CS5.1, DNGs do not get opened

    On my Macbook Pro w/OS X 10.6.8, I've got LR3.4.1, and PS CS5.1 Extended with the most recent Camera Raw update.. When I right-click and choose Edit In on a DNG file in LR3, and select either Open as Smart Object, or Edit In Photoshop.., the DNG file

  • BI admin cockpit - how to install the BI content Web templates

    Hi Gurus, We have installed BI admin cockpit. we have also installed Bex required queries. now I wanted to install all web templates (SAP format 3.x) in BI content. after installing I checked WAD but I cannot see them their also when I go to metadata

  • End User Training Doc

    Hi All, Can anyone send me the End User Training Doc to my id [email protected] its little urgent to me i will appreciate in SDn way thanks in adv

  • FYI - Apple link to RAMJET offers decent 1 GB SO-DIMM price

    I've been buying RAM from RAMJET these days as it is linked to from Apple's web site at http://guide.apple.com/index.lasso and when at the RAMJET site the PB 17" 1 Gig DDR2 SO-DIMM is selling for $94. This is a sudden price drop from $117 only last w