How to insert links in an Acrobat 8 pdf document to open folders

I am using Acrobat 8 and have made a "menu" page in InDesign which will has links in it to open other pdf documents. I have successfully exported to PDF from InDesign and inserted links to my PDF files which work perfectly. I now need to insert a link to direct the user to a particular folder so they can view the files/folders within that folder.
The complete set of documents will be burnt onto DVD and the "menu" pdf will open using an autorun file.
How can I insert a link in the PDF document that will open the folder that I want the reader to be able to view and navigate through themselves.  Any suggestions would be very much appreciated as this is a major job for a client.  I have seen a few ideas on the net but nothing that really answers my particular question.
Cheers - Claire

what should have been done, is place all the PDF in Folder including your contents page and Make all your links in Indesign. Then burn the folder to the DVD. That way all the links would be relative to location of the files.
Try a test that way. As was said Acrobat can't do it.

Similar Messages

  • How to insert page numbers in a PDF document?

    How to insert page numbers in a PDF document using Adobe Acrobat X Pro 10.1.2?
    Thanks.

    OK, I found it myself:
    1. Tools - Pages - Edit Page Design - Header & Footer - Add Header & Footer.
    2. Select the font and size, etc, place the cursor on the appropriate site to insert the page number, click the "Insert Page Number" button, and click OK.
    That is!

  • How to insert an image in a pdf document

    I used the "Stamper" example and modified the fuction to insert image to my pdf doc.
    PDAnnot CreateStampAnnotationAt(AVPageView pageView, AVDevRect *rect)
    to add a picture Annotation into page.
    when system calling the callback function "AnnotDraw" to draw the Cos Object in that Annotation ,the function "AVPageViewDrawCosObj(pageView, coApp, &avdr)" doesn't work.Here is the code:
    ASFixedRect pdLocation;
    PDAnnot annot = {0,0};
    CosObj cAnnotObj, cIntObj, cStmObj, attributesDict, LengthEntry, cNullObj;
    CosObj cAPDictObj, cStmDictObj, cBBoxObj, cProcSetObj, cResObj;
    CosObj fontResObj, fontResObj2, cObj;
    CosDoc cdoc;
    ASStm stm;
    char buf[512];
    PDPage pdPage;
    ASUns32 s;
    ASFile picFile = NULL;
    DURING
            //handle clicks (with no drag, or only in one direction), by creating a default size annot
            if((rect->top == rect->bottom) || (rect->right == rect->left))
                    rect->top +=75;
                    rect->right += 150;
            pdPage = AVPageViewGetPage(pageView);
            AVDoc avDoc = AVPageViewGetAVDoc(pageView);
            AVPageViewDeviceRectToPage ( pageView, rect, &pdLocation);
            // Add the new annotation to the page.
            annot = PDPageAddNewAnnot(pdPage, -1, Stamper_K, &pdLocation);
            cAnnotObj = PDAnnotGetCosObj(annot);
            cdoc = PDDocGetCosDoc(PDPageGetDoc(pdPage));
            // See PDF Specification for more information on the Flags key.
            cIntObj = CosNewInteger (cdoc, false, 4L);
            CosDictPutKeyString(cAnnotObj, Flags_KStr, cIntObj);
            cAPDictObj = CosNewDict(cdoc, false, 1L);
            cNullObj = CosNewNull();
            ASFileSysOpenFile (ASGetDefaultFileSys (),ASPathFromPlatformPath("c:\\test.jpeg"), ASFILE_READ, &picFile);
            stm = ASFileStmRdOpen (picFile, 4096);
            attributesDict        = CosNewDict(cdoc, false, 5);
            LengthEntry = CosNewInteger(cdoc, false,11594 );
            CosDictPutKeyString(attributesDict, Length_KStr, LengthEntry);
            cStmObj = CosNewStream(cdoc, true, stm, 0, true, attributesDict, cNullObj, s);
            cStmDictObj = CosStreamDict(cStmObj);
            CosDictPutKeyString(cStmDictObj, "Type", CosNewNameFromString(cdoc, false, "XObject"));
            CosDictPutKeyString(cStmDictObj, "Subtype", CosNewNameFromString(cdoc, false, "Image"));
            CosDictPutKeyString(cStmDictObj, "Width", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "Height", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "ColorSpace", CosNewNameFromString(cdoc, false, "DeviceRGB"));
            CosDictPutKeyString(cStmDictObj, "BitsPerComponent", CosNewInteger(cdoc, false , 8));
            cBBoxObj = CosNewArray(cdoc, false, 4L);
            CosArrayInsert(cBBoxObj, 0L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 1L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 2L, CosNewInteger(cdoc, false, 100L));
            CosArrayInsert(cBBoxObj, 3L, CosNewInteger(cdoc, false, 100L));
            CosDictPutKeyString(cStmDictObj, "BBox", cBBoxObj);
            CosDictPut(cAPDictObj, FaceNormal_K, cStmObj);
            CosDictPutKeyString(cAnnotObj, Appearance_KStr, cAPDictObj);
    HANDLER
            AVAlertNote(ASGetErrorString(ERRORCODE, buf, sizeof(buf)));
    END_HANDLER
    Please help.

    BMP image?
    Or Is it possible to insert any text instead of image?
    But I need to work just like the stamper sample present in sdk. that is when i click on the pdf document any text has to be inserted instead of the image. I should not be to type the text in the pdf, but it should work exactly similiar to the stamper sample, but text has to be inserted instead of an image.
    How can this be done? Is it possible to do?
    Please help.

  • Inserting text to Acrobat PDF document, not able to create PDEText.

    Hi ,
    I have created a plugin for Acrobat, On press of MyPlugin's 'Insert' button it has to add the text to the document.
    Eg: If there is a Active PDF document, which contains a text "Hello" in it. I want to insert "World" (i.e, the document should have "Hello World") when i click 'Insert' button.
    I am writing the below function for this:
    static void InsertCitationText(PDDoc activePDDoc,PDPage pdPage , int pgNum , int pgOffset)
          PDEContent volatile pdecontent = NULL;
          PDPage pdPage = PDDocAcquirePage (activePDDoc, pgNum);
          pdecontent = PDPageAcquirePDEContent (pdPage, gExtensionID);
        Here I have to create PDEText pdeText and assign "World" to it. How do i do this??
         I tried to do this in TextCreate function by looking into the sample plugin snippets but its not creating the text , when i debug and see the value value of 'pdeText' its giving,  "pdeText not found".
               PDEText pdeText = TextCreate();
          PDEContentAddElem(pdecontent, kPDEAfterLast, (reinterpret_cast<PDEElement>(pdeText)));
          /* Put the contents back in the page */
          PDPageSetPDEContent(pdPage, gExtensionID);
          /* Clean up */
          PDPageReleasePDEContent(pdPage, gExtensionID);
    static PDEText TextCreate()
                PDSysFont sysFont=NULL; /* Used by PDEFont creation */
                PDEFont pdeFont=NULL; /* Reference to a font used on a page */
                PDEFontAttrs pdeFontAttrs; /* Font attributes */
                ASFixedMatrix textMatrix; /* Transformation matrix for text */
                PDEColorSpace pdeColorSpace; /* ColorSpace */
                PDEGraphicState gState; /* Graphic state to apply to operation */
                // Create a PDEText object
                PDEText pdeText = PDETextCreate();
                // Text to write to the PDF
                char *Title = "World";
                // Get system font
                sysFont = PDFindSysFont(&pdeFontAttrs, sizeof(PDEFontAttrs), 0);
                // Initialize the font descriptor then create the font reference.
                memset(&pdeFontAttrs, 0, sizeof(pdeFontAttrs));
                // Find the matching system font.
                pdeFontAttrs.name = ASAtomFromString("Verdana");
                pdeFontAttrs.type = ASAtomFromString("Type1");
                //Get system font
                sysFont = PDFindSysFont(&pdeFontAttrs,sizeof(pdeFontAttrs),0);
                pdeFont = PDEFontCreateFromSysFont(sysFont, kPDEFontDoNotEmbed);
                // Create a DEGraphicState object and set its attributes
    pdeColorSpace = PDEColorSpaceCreateFromName(ASAtomFromString("DeviceGray"));
                memset(&gState, 0, sizeof(PDEGraphicState));
    gState.strokeColorSpec.space = gState.fillColorSpec.space = pdeColorSpace;
                gState.miterLimit = fixedTen;
                gState.flatness = fixedOne;
                gState.lineWidth = fixedOne;
                // Create an ASFixedMatrix object
                memset(&textMatrix, 0, sizeof(textMatrix));
                textMatrix.a = Int16ToFixed(24);
                textMatrix.d = Int16ToFixed(24);
                textMatrix.h = Int16ToFixed(1*72);
                textMatrix.v = Int16ToFixed(2*72);
                //Create a PDEText Object
                pdeText =  PDETextCreate();
    PDETextAdd (pdeText, kPDETextRun, 0,(ASUns8 *)Title, strlen(Title), pdeFont, &gState,
                sizeof(gState), NULL, 0, &textMatrix, NULL);
                PDERelease ((PDEObject) pdeColorSpace);
                PDERelease ((PDEObject) pdeFont);
                return pdeText;
    Is there anyway i can add the "World" (as PDEElement) to document so that i can use in this function "PDEContentAddElem(pdecontent, kPDEAfterLast, (reinterpret_cast<PDEElement>(pdeText)));"  ???
    Or
    Should i use the above 'TextCreate()' huge function to create PDEText(PDEElement). If i have to use this method why the PDEText is not getting created? Am i missing something in the above function ??
    Please someone help me out, Thanks in advance.
    Regards,
    Chetan.

    Hi Irosenth,
    I will give a try for this, we must try to certain extent who knows we may Succeed. We must noe give-up easily.
    You have not said this is impossible, but you say this is difficult. Rite ??
    If you give me support, i dont think it would be difficult.
    First i will try to insert a text in a blank page.This is possible rite ??
    I saw a discussion in this forum, http://forums.adobe.com/message/2092443#2092443 , this is 2 years old. This guy has inserted the text into PDF document.
    I refered this link and try to insert a text in Active PDF document but text is not getting inserted into it.
    Please let me know what i am making wrong in the below function,
    static void InsertCitationText(PDDoc activePDDoc, int pgNum , int pgOffset)
          PDEContent volatile pdecontent = NULL;
          PDPage pdPage = PDDocAcquirePage (activePDDoc, pgNum);
          pdecontent = PDPageAcquirePDEContent (pdPage, gExtensionID);
          PDEText pdeText = TextCreate();
          PDEContentAddElem(pdecontent, kPDEAfterLast, (reinterpret_cast<PDEElement>(pdeText)));
          /* Put the contents back in the page */
          PDPageSetPDEContent(pdPage, gExtensionID);
          /* Clean up */
          PDPageReleasePDEContent(pdPage, gExtensionID);
    TextCreate() function is same as the one which i mentioned in this discussion. Please let me what i am making wrong in that function aswell. Its not creating the specified "World" pdeText. Please help me out for this. Thanks in advance.
    Regards,
    Chetan.

  • IWeb • How Do I Make Links in an Embedded PDF Document Open in New Page?

    On this page http://ostyn-newman.com/Gov_Downloads.html I have a PDF document that is embedded.  I tried an IFrame, but everything seemed to work better for me with the "Embed" code.  I am open to changing this if it would be better.  Here's my problem.  I can get the PDF document to display fine, but when I click on the links in the PDF document, the destination page opens in the embedded window.  I want the links to open the destination in a new window.
    I created the part of the document with most of the links (Pages 8.5 - 56) in Numbers and cut and pasted the table into a Pages document to create the completed document on our site.  I exported the docuemnt from Pages as a PDF file which is what you see.  There is also a link to download the file on the same page which works just fine.
    I have tried to insert the target="_blank" code but have not been able to get it to open the destination pages in a new window.  I am inserting the code by using the Insert/Widget/HTML Snippet Feature in IWeb.  Here is the code I am using.
    <embed src=
    "http://ostyn-newman.com/Media/GS27F0026XTextfile.pdf"
    style="width:850px; height:1000px;
    border-width:0px;
    border-color:#FFCC66;
    border-style:solid;"
    scrolling="auto" >
    </embed>
    I am not a coder and have just used Google to find the code to cut and paste and have played around with it to get to the place I am.  If anybody can tweak the code I have or offer some totally new code for me to insert that will get this to work would be greatly appreciated.
    Please keep in mind that most of the people who visit and use this page are government employees and are almost exclusivey using Explorer. 

    Thank you Jeff,
    I tried your original suggestion and now my inserted html widget reads
    <embed src=
    "http://ostyn-newman.com/Media/GS27F0026XTextfile.pdf"
    style="width:850px; height:1000px;
    border-width:0px;
    border-color:#FFCC66;
    border-style:solid;"
    scrolling="auto" target="_blank">
    </embed>
    It is live on my site.  You can see that the embedded document still opens the destination links in the embedded window.
    As for your other two suggestions, thank you as well.  I am aware of those techniques and did not use them because that is not how I want the other PDF links on the page to behave.  The catalog and autocad blocks downloads in the box at the top should simply download (or behave however the client's browser is configured to handle downloaded PDF documents or zip files.)  I don't intend to force those to open a new window.  I could also have our client click on a link to the PDF document and open it in a new page (like in your second suggestion) but I was hoping to embed the PDF and have it automatically viewable on our Download • Terms • Prices Page with all of the PDF search functions intact as well as the links be active.  My only complaint at this point is that the links in the embedded PDF document open the destination page in the embed window instead of a new window.  I only want to force a new window because the destination window doesn't behave properly when it opens in my embed window and it is difficult to figure out how to go back to the my PDF document when a destination window gets opened in the embed window.  The code you sent didn't do the trick.  Or maybe I didn't get it exactly right.  That is why I included it above.  Thanks for trying though.  I appreciate the effort.
    I would be willing to bypass the imbed/iFrame route altogether if I could just somehow drop the Pages document into the IWeb page and retain the search and link features, but I've not been able to figure out how to do that.  When I was exploring how to directly drop a Pages document into an IWeb page is when I stumbled on the method of embedding a PDF document into an IWeb page to retain the important search and link features.

  • How do I merge more than one PDF document into one singular pdf using adobe viewer touch on a microsoft surface?

    How do I merge more than one PDF document into one singular pdf using adobe viewer touch on a microsoft surface?

    Or using the Adobe PDF Pack https://www.acrobat.com/

  • How to make PDF documents that open in Adobe reader open in Preview

    How do I make PDF documents that open in Adobe Acrobat open in Preview?

    Hold down the control key and select a file of the given type in the Finder. A contextual menu appears. Release the  control key and hold down the option key. From the contextual menu, select the submenu
              Always Open With
    and then the application you want to open all files of that type.

  • Hello, I was wondering how to get a version of a PDF document? My Adobe shot down and I have not had time to save my document with the notes had been taken. When I reopened there were no notes on my paper. I have a mac book pro. Thx.

    Hello, I was wondering how to get a version of a PDF document? My Adobe shot down and I have not had time to save my document with the notes had been taken. When I reopened there were no notes on my paper. I have a macbook pro. Thx.

    Hi Erika1987,
    If you have not saved the document and Acrobat closed then it's not possible to retrieve the lost data on the pdf file.
    Regards,
    Rave

  • How to Publish on the Web a PDF document in Reading mode only

    Hello,
    I'm planning to post on my web site my manuscript in PDF format. I would like to make it available in a reading mode only.. I wonder if ADOBE LIVECYCLE Rights Management would allow me to do so in a safe manner. What would be the cost?
    Thanks.
    PATEGA

    Thank you for your reply.
    De : Test Screen Name 
    Envoyé : 15 septembre 2014 05:51
    À : Gaétan Patenaude
    Objet :  How to Publish on the Web a PDF document in Reading mode only
    How to Publish on the Web a PDF document in Reading mode only
    created by Test Screen Name <https://forums.adobe.com/people/TestScreenName>  in Adobe PDF Pack - View the full discussion <https://forums.adobe.com/message/6730511#6730511>

  • Using 10.6.8, internet pdf documents not opening using Adobe Reader; how is this corrected?

    Using 10.6.8, internet pdf documents not opening using Adobe Reader; how is this corrected?  I've tried changing "sharing and permissions" to "read and write" as suggested on other help sites, but this did not correct the problem.

    I had the same problem---contacted Adobe and their service rep helped me by
    A.   Deleting  Adobe Reader from my iMac's Applications in Finder
    B.   Downloading Google Chrome browser and then
    C.   Downloading the latest Adobe Reader for Mac 10.6.8 in Google Chrome--it works
    Adobe acknowledges problem with the latest Snow Leopard update 10.6.8 and with this work around, I can open PDF's using the Google Chrome Browser.
    Is this the ideal solution---NO.  Safari is my main browser. I now have to use a separate browser for PDF's.
    Am I happy to be able to open PDF's---YES
    You can't believe the time I spent to solve this problem before calling Adobe for help. My Apple Care policy expired a month ago . As I use Photoshop Elements, I was not charged by Adobe for their help on the telephone.

  • How can I add links to open xml and csv files stored in another location? Please advice how to place links in my frame maker document?

    Hi,
    I would like to know as to how can I add links to open xml and csv files stored in another location? Please advice how to place links in my frame maker document?
    Kindly advice.
    Thanks
    Priya

    Special > Hypertext > Command "open document" will do its best to open the target document inside FrameMaker, which may not be much help; Special > Hypertext > Command "message …" will use the application you specify. The user guide for 7.0 says this about absolute links, and I don't think anything has changed since:
    For example, to start PaintBrush and open the Ship.pcx file on drive C you would use the command message system pbrush.exe C:/Ship.pcx
    I've not often used a relative link, and not recently: the same source says
    folder levels are separated by a slash / even in Windows and Mac
    [relative links] FrameMaker searches for a relative pathname beginning in the folder that contains the current document
    [absolute links] FrameMaker searches for an absolute pathname beginning at the top of the file system. In Windows, the absolute pathname begins with the drive specifier, a colon and a slash.

  • If PDF document is open in any TAB, scrolling through touch pad in other TABs is disabled?

    I have ACER Aspire 5740G, Firefox 5.0, Windows 7 Ultimate (X32), Adobe Acrobat X Pro. If some online "pdf" document is open in any of the TABs, The scrolling through touch pad in other tabs stop working however it remain active in the PDF document. After closing the pdf tab the scrolling starts to work normal.

    I have the same problem and have had it since Firefox 5. I now have Firefox 6.0.2 and still have the problem.
    Windows 7 x64, Synaptics Touchpad V7.2
    If an Adobe PDF is open in a tab, touchpad scrolling only works in that tab. If any other tabs are open and user attempts to scroll, nothing will happen in the non-pdf tab, but the pdf will be scrolling. This can be very annoying because if you forget there is a pdf open and try to scroll, you will scroll the pdf out of place.

  • One or more PDF documents are open inside a web browser - message

    Hi,
    I have a new L series notebook and its great. The only foible I can think of is a message I keep getting when I try to shutdown. There is a message box that says "One or more PDF documents are open inside a web browser. If you exit adobe reader now, those documents will be closed. Are you sure you want to exit?".
    The thing is I do not have any PDF's or web browsers open at the time! Can you help me please?
    Thanks, Mark.

    Hi Mark
    Believe me its nothing serious the same happens on my notebook from time to time
    Usually the PDF files can be read with the Adobe Acrobat reader. This application service runs in the OS background and this message can appears if the Adobe Acrobat reader cannot close the background process automatically
    I have solved this tiny problem by removing the acrobat reader from the system. After new reboot I have reinstalled it again
    Now the message does not appear and all runs like a dream ;)

  • Password protected PDF document not opened with E7...

    Dear all,
    Password protected PDF document not opened with nokia E7-00. Previously I used nokia N79, that time I was able to open Password protected PDF file such as bank email statement etc. Now I can't.
    It is quite disappointing with this phone !

    hi mateys,
    you may want to search under "PDF" in the Nokia Store, as some solutions such as Picsel Smart Office exist, where they do open password-protected PDF's.

  • How can I link to a local PDF and have it launch on a specific page?

    Hey People,
    I've searched quite a bit over this and I'm sure it used to work.
    I've got a Word document that I'm using as an index to a whole bunch of PDFs.  The PDFs are in the same folder (and subfolders) as the Word document.
    I've tried using the hyperlink method of appending #page=2 to the link, but it only ever opens on the first page.
    There doesn't seem to be anyway to use the command line /A "page=s" "path/to/file.pdf" method.
    I just want to have a word document which can open PDFs at a specific page, all from a local file system.
    Any ideas?  I'm sure this used to work!
    I've tried Acrobat/Reader v8 and v9.
    Thanks
    Craig

    Hi Craig,
    When opening a PDF document from a command shell, you can pass the parameters to the open command using the /A switch with the following syntax:
    <Acrobat path> /A "<parameter>=<value>" "<PDF path>"
    For example:
    Acrobat.exe /A "zoom=1000" "C:\example.pdf"
    Regards,
    Rave

Maybe you are looking for