Help - hyperlinks in PDF booklet?

This ought to be a trivial problem, but it is driving me nuts.
I have a large InDesign file with lots of hyperlinks in it, designed to be pritned as a booklet.
If I go to Adobe PDF presets > choose one of them, then check the Include..hyperlinks I get single page PDFs with the hyperlinks in them.
If I got to Print booklet I get a PDF with all the spreads correctly imposed - but none of the hyperlinks work.
So, how do I print as a booklet and include the hyperlinks?
Thank you

Thanks Jongware - the idea is to have a publications catalogue people can either download and print out as a booklet or click on the links to download the publications.
However, not to worry as it was soluble: export as single page PDFs with hyperlinks in them, then print this PDF as a booklet with Reader X.

Similar Messages

  • How to read Hyperlinks in pdf???

    hi developer's,
    I am in PDF processing... I am having doubt in that Processing.
    How to read Hyperlinks from PDF file?
    I can able to set the hyperlink.. But i cant able to get the hyperlinks..
    The following example program will set the hyperlink to the PDF file using lowagie API..
    import com.lowagie.text.Anchor;
    import com.lowagie.text.Chunk;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.html.HtmlWriter;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    public class Argu1 {
         public static void main(String[] args) {
              Document document = new Document();
              try {
                   PdfWriter pdf = PdfWriter.getInstance(document,
                             new FileOutputStream("PageLink.pdf"));
    PdfReader pdf_read=new                
                   document.open();
                   document.add(new Paragraph("Hi Everbody....!"));
                   Anchor pdfRef = new Anchor("Click Me");
                   pdfRef.setReference("www.java2s.com");
                   Anchor rtfRef = new Anchor("Touch Me");
                   rtfRef.setReference("www.sun.com");
                   System.out.println(rtfRef.reference());
                   document.add(pdfRef);
                   document.add(Chunk.NEWLINE);
                   document.add(rtfRef);
              } catch (DocumentException de) {
                   System.err.println(de.getMessage());
              } catch (IOException ioe) {
                   System.err.println(ioe.getMessage());
              document.close();
    Help me how to read the Hyperlinks from the PDF file using java ...
    Thanks in advance,
    With Regards,
    J.Imran

    Instead of cross-posting unformatted code you could have taken a look at the API, because there you might have come across a method named getLinks...Even though it's not documented, I really suspect that it will return the Hyperlinks on a given page.

  • Find hyperlinks in pdf's

    How can I find hyperlinks in pdf's? We have an external service which checks hyperlinks in our pdf's but does not tell you the location of them, so I know I may have an invalid link but can't find it. Any help at all would be appreciated

    Select the link tool and then the links should become visible.  Of course if they're links that Acrobat makes automatically because it finds a web address you'll have to do a search for www. or http:

  • Hyperlinks in PDF fail when security turned on Acrobat Pro 6

    The InDesign CS created buttons I exported to PDF stop working when I apply security to not permit changes to document. The other bookmark type hyperlinks work. The external hyperlinks work. Just not the button types.
    Using Acrobat 6, OS X 10.4.11, Power PC G4.
    Can anyone help?

    Hyperlinks in PDF fail when security turned on Acrobat Pro 6
    Thank you, Aandi.
    That worked. Made my day.
    Cheers,
    Deborah

  • Printing a PDF Booklet problem

    Hello,
    I have a PDF that I would like to print. When I go to my print options, in the lower left I can select "PDF Booklet." I select that option and it looks as though the pages are being compiled. But after a few moments, I get this warning:
    The action "PDF Booklet" could not be loaded because it is not Universal. Please ask the developer for a Universal version of the action.
    What does this mean, and how can I fix this so I can print my document as a booklet?
    I have Preview version 5.0.3
    Thank you in advance.

    Does this help...
    http://discussions.apple.com/thread.jspa?threadID=2652413

  • Hyperlink in pdf is missing when run from server.

    Hello,
    I create a link for a field in a report (using Hyperlink tab Hyperlink information).  When I export the pdf from Crystal Report, I could see the link when mouse over the field.  But when I run the report from opendocumentfrom server) , the link is missing.  Does Crystal Report support hyperlink in pdf when run from server?  Or do I miss anything?
    Thanks for your help in advance.

    Moving to BusinessObject forum

  • Hyperlinks to PDF files only work in Preview

    I cannot get any of my hyperlinks to PDF files to work in my
    ouput WebHelp file. The links work fine in Preview, but not in the
    actual output. And the files have been added to the baggage folder,
    and can be seen in the Baggage folder. Any help would be greatly
    appreciated.
    Thanks!

    Hi Retso
    Sorry for not replying earlier. I've been conducting a
    RoboHelp HTML class all day.
    Are you using RoboHelp HTML 6? If so, there is a new option
    labeled "Mark of the web" that could be nailing you. When you
    generate your WebHelp by double-clicking the layout, see if this
    option is enabled. If so, disable it and your PDF links should
    begin working. Note, however, that by DE-selecting this option, you
    could start seeing the Yellow Information bar as Internet Explorer
    ever so helpfully deems this as a security threat and blocks your
    WebHelp until you click it and allow the content to be shown.
    Cheers... Rick

  • How to read HyperLinks from pdf file??

    hi developer's,
    I am in PDF processing... I am having doubt in that Processing.
    How to read Hyperlinks from PDF file?
    I can able to set the hyperlink.. But i cant able to get the hyperlinks..
    The following example program will set the hyperlink to the PDF file using lowagie API..
    import com.lowagie.text.Anchor;
    import com.lowagie.text.Chunk;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.html.HtmlWriter;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    public class Argu1 {
         public static void main(String[] args) {
              Document document = new Document();
              try {
                   PdfWriter pdf = PdfWriter.getInstance(document,
                             new FileOutputStream("PageLink.pdf"));
    PdfReader pdf_read=new                
                   document.open();
                   document.add(new Paragraph("Hi Everbody....!"));
                   Anchor pdfRef = new Anchor("Click Me");
                   pdfRef.setReference("www.java2s.com");
                   Anchor rtfRef = new Anchor("Touch Me");
                   rtfRef.setReference("www.sun.com");
                   System.out.println(rtfRef.reference());
                   document.add(pdfRef);
                   document.add(Chunk.NEWLINE);
                   document.add(rtfRef);
              } catch (DocumentException de) {
                   System.err.println(de.getMessage());
              } catch (IOException ioe) {
                   System.err.println(ioe.getMessage());
              document.close();
    Help me how to read the Hyperlinks from the PDF file using java ...
    Thanks in advance,
    With Regards,
    J.Imran

    Instead of cross-posting unformatted code you could have taken a look at the API, because there you might have come across a method named getLinks...Even though it's not documented, I really suspect that it will return the Hyperlinks on a given page.

  • Where should i store the PDF booklet with an album in itunes?

    I ripped a CD with iTunes and would like to store the booklet as a PDF with it.
    I know how to assign the cover art as JPG to the tracks / album, but I cannot find a way to store the PDF booklet with it.
    (I guess, I could store a number of JPG's with the album, one JPG per page of the booklet, but that seems not to be the right way to me.)
    Nay kind of insights and/or suggestions will be appreciated.
    Best regards,
    Gabriel.

    Lightroom itself will not help you with pdf, word, etc.
    However, there is a plugin you can use called AnyFile which will allow you to manage these documents in Lightroom (by assigning keywords and other metadata) so that you can search for all documents (photos, pdf, word, music, powerpoint, etc.) with given metadata.
    Because you do this via metadata, it doesn't matter where you put these files. Put them anywhere you want.

  • Hi, How do I create an online PDF booklet from pdf pages?

    My pdf booklet should have links to other pdf documents. In simple it should be like a book, where in the first page should have indexes and links to other pages..

    i'm afraid i can't help you. i've never tried to create a document that can
    be filled out. hopefully, someone else can help you.

  • Retain the hyperlinks of pdf in indesign

    Hi
    When i import the PDf which has hyperlinks, into Indesign all the hyperlinks are lost. Can we have any way to retain the hyperlinks of pdf in indesign.
    Help me!
    Thanks
    Selva

    No. Because InDesign and any other program that places PDF files can only read the layer of the page description, not the interactivity layer which contains the hyperlinks. Sorry.

  • Free Unofficial Web Start/JNLP FAQ pdf booklet released

    Hi,
    I finally finished the docbook conversion and the Unofficial Java Web Start/JNLP FAQ is now available as a pdf booklet for printing and offline consumption.
    The FAQ is a living, growing list of answers, not just a publish-and-forget-it static dead-tree booklet, help to improve it. Post your insights and corrections here or mail them to [email protected] Your contributions are welcome.
    The FAQ is online at http://www.geocities.com/vamp201/jwsfaq.html
    The pdf booklet is online at
    http://www.geocities.com/vamp201/download/jwsfaq.pdf
    Enjoy
    - Gerald

    Gerald,
    a couple of comments on the FAQ regarding
    Q: Can I use JWS for Intranet apps?
    file:/// works where file:// doesn't
    also including the path to the .jnlp file in double quotes allows to use path containg empty spaces.
    example:
    javaws "file:///C:\Program Files\Java Web
    Start\.javaws\cache\http\Dlocalhost\P80\DMclient\AMdemo.jnlp"

  • How to properly print comments in a PDF Booklet

    I am printing a PDF booklet. I am printing on 11 X17, and I am trying to print the comments on a separate page with lines. I can select this, and then press Summarize Comments. But here is where my problem lies. How do I not print comments from the first page, or how can I make sure the comments are all on the left side when I open each page in my booklet. Right now, each page of comments is on the backside of the page it is referring to. I'm assuming the issue is because clearly the cover page doesn't have a left side, so it is forced to do the following page, and so on and so forth. Does anyone know how I can fix this?

    Hi Nousmedis,
    I would recommend you to try again, here are the steps :
    Open the document saved on the cloud on your mac
    Make the desired comments
    Click on 'Save to adobe Document Cloud'
    Reopen that file(cloud version) on the mac and confirm if changes are saved.
    Open the file on your ipad device and the changes in the pdf should be reflected on your ipad device too.
    Do let me know if the issue persists. Moreover i would recommend you to turn on the Mobile Link on both your devices (mac and ipad).
    Regards,
    Rahul

  • How to open hyperlink of PDF file uploaded at SharePoint(hosted at Office365) in 'Adobe Acrobat' for annotation and comments.

    Hi,
    I've a hyperlink of PDF file which is uploaded under SharePoint Document library(hosted at Office365 E1) on my custom '../SitePages/Approver.aspx'. Once user click on that hyperlink it should ask me to "Check-Out & Open' pdf file directly from sharePoint document library then it should automatically gets opened into 'Adobe Acrobat' where user will do some annotation/ comments in that pdf file & again 'Check-In' back his changes to SharePoint Document library.
    Following article will explain how I want to Check-In & Check-Out  pdf files from SharePoint document library once i click hyperlink on my '../SitePages/Approver.aspx' page.
    acrobatusers.com/tutorials/how-to-work-with-sharepoint-and-office-365
    Please let me know how to achieve this functionality using office 365.
    Your assistance would be greatly appreciated as this is top-priority requirement for us.
    Yours sincerely,
    Mahesh Sherkar
    [signature deleted by host]

    For instance, the forms.conf file:
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "D:\Oradev/forms/java/$1"
    # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "D:\Oradev/jinit/$1"
    # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "d:\oradev/tools/web/html/$1"
    # Virtual Path for icons
    AliasMatch ^/forms/icons/(..*) "d:\icons/$1"
    ...you can move your files in one of the existing physical directories - e.g: d:/icons - and call them with the following:
    Web.show_Document('/forms/icons/document.pdf','_blank');But you can also add your own virtual/physical directory:
    # Virtual Path for documents
    AliasMatch ^/forms/documents/(..*) "d:\documents/$1"
    ...with the following code:
    Web.show_Document('/forms/documents/document.pdf','_blank');Francois

  • Hyperlink in PDF to relative file does not work

    I am creating PDFs from Java and the PDF contains a link to a relative file which is distributed along with the PDF. When the link is clicked, the file is opened with the OS default program (written by us). At least that is how it is supposed to work.
    How should links to relative files be formatted?

    Thanks for the reply Daterson! This could be a nice new feature for Adobe Reader, but our reports are cross format, so this solution should work in HTML as much as it does in PDF.
    I think this problem stems from the fact that launching a different application from a hyperlink in PDF is neither secure, nor cross platform. Therefore, I think the support for such an action doesn't exist in PDF, but also in other formats, which we would also like to support.
    If anyone comes across a clever idea or technique for this problem, I would love to hear it!

Maybe you are looking for

  • Duplicate songs on Iphone that can't be played

    Hi all, I have 11 songs on my iphone 4s that are duplicates of songs I have, although these duplicates seem to be corrupt because they can't be played.  I can't swipe left to right to delete these songs on the iphone, and under itunes on my mac, I on

  • HP Photosmart C4580

    every time I use Avery labels in my printer I receive an error message that the paper is jammed and they won't print ~ any work arounds that anyone out there might suggest ~ thanks

  • Converting strokes to fills

    I'm creating some mobile phone content and I need to convert the stroked lines I brought in from Illustrator into fills (to increase playback speeds). What is the best way to make that conversion? Thanks

  • Encoding ISO-8859-1 String

    I have a code, i want to decode iso88591string, but i got a $=�?=f?se;�rng;�?;� Is any sugestions how to convert iso8859-1 to windows 1257, Thanks public static void main(String[] args) String isoString= new String("$=�Ū=fżse;�rng;�Ż;�"); byte[] stri

  • ABAPer working together Customer Care

    Hi ladies and gentlemen, Have you, being an ABAPer, worked with Customer Care before? My situation involve me (ABAP) having to work with Customer Care to determine issue coming from customers are either ABAP or Functional. Do you all know of any proc