How to create a hyperlink when exporting .pdf?

Hi guys,
I've been doing quite a bit of research on how to make an object into a hyperlink when exporting my .ai as .pdf.
So far I've come across guides that show the method of using Object > Slice and the Attributes' Image Map, but none of them seem to work when I open my exported .pdf.
How do you guys create objects with links when exporting .pdf?
Thanks in advance.

InDesign, most probably.
Or create the PDF in Illustrator and use Acrobat (Pro) afterwards to make links.
Depends on what's inside the document.

Similar Messages

  • How to create a smallest file size pdf from indesign CS4 document

    How to create a smallest file size pdf (suitable for upload to a website) from indesign CS4 document which contains multiple illustrator CS4 illustrations.
    I have chosen the "smallest file size option" but the pdf file is over 30MB, can anyone help please.
    Thank you

    One trick is to
    Set the placed graphics to have a transparency of 99.9% (you can do this with Find/Change and select Objects)
    This is enough to force the graphics throught the Transparency Flattener
    Next set the Transparency Blend Space to RGB (Edit>Transparency Blend Space)
    Next set a custom Transparency Flattner Preset Edit>Transparency Flattner
    Next
    Use File>Export and choose
    Smallest file size
    PDF Compatibility Acrobat 4 (PDF 1.3)
    In Advanced Section - go to transparency and selec the new Flattener Preset you created.
    *this will convert your vectors to raster, but it should reduce your file size

  • How to create a hyperlink on a pop up window?

    Hi,
            How to create a hyperlink on a pop up window?
    The pop up window appears on right click in a transaction.
    Thanks in advance,
    Regards,
    Varun

    Hi Varun,
    While in transaction CRMD_BUS2000111 -> Opportunity -> select any -> partner tab, when I right click I get a standard pop up.
    I want to introduce my hyperlink in that standard pop up.
    you should have mentioned that earlier, that's the most complex part!
    This is called a contextual menu (for more information, read [SAP Library: Context Menus|http://help.sap.com/saphelp_nw70/helpdata/en/94/c4a6377cc0c92ce10000009b38f8cf/frameset.htm ]).
    Adding a menu item (that is not called an hyperlink, or is there something I didn't understand?) there is probably a modification of the standard. Either modifying the ABAP, or adding it to a GUI status of type "contextual menu".
    There are number of demo programs, like DEMO_DYNPRO_CONTEXT_MENU, CTMENU_BUILD, CTMENU_DYNPRO...
    Sandra

  • How to create a hyperlink in smartform

    Hi All,
    How to create a hyperlink in the smartform text editor so that when we click on that,we should be able to open the internet explorer.I have tried with the option insert URL.But still its not working.Do we need to do any further settings along with this?
    Thanks in advance
    Regards,
    Akanksha

    Hi,
    check this:
    http://help.sap.com/saphelp_47x200/helpdata/en/03/7560eccf0d11d3b565006094192fe3/frameset.htm
    Create hyperlink in SMARTFORM
    How to create a hyperlink in smartform
    Create hyperlink in SMARTFORM
    Re: URL in SmartForm sent as email body
    Don't forget to reward if useful

  • How to create a FSG report in pdf format

    How to create a FSG report in pdf format?
    Thanks In Advance
    Kris

    Hi,
    There is an enhancement request at user group review to create FSG's in PDF format. However, I transformed the FSG output by using ascii2pdf shareware software (do a search on google.) I created a shell script that did the transformation and emailed the report from Oracle Apps. It seems to work ok.
    Renee

  • How to create a secure & non editable PDF? So that it cannot be modified by any of the secondary too

    How to create a secure & non editable PDF? So that it cannot be modified by any of the secondary tools available online for security breaks and editing of PDF document
    I put all the security options but still there are tools to break the security (even password) leading to editing of document
    Need to avoid any such situation

    If the document is important, and there is something to be gained by modifying it - then someone will just make a new copy of it (e.g. print and scan, screen capture), and make a new document, then change it.
    If protecting the integrity of the document - proving it is unchanged - is the thing, look at digital signatures. Forget security, the signed file can be freely edited, but the signature will always show it is changed.

  • SRVE0199E: OutputStream already obtained when exporting pdf

    Hi,
    I am have a problem when export pdf file from a web application. When I build with tomcat every works fine, but when deployed in Websphere. The problem occurred. It is that the exception stack being attached at the end of pdf file which prevents Adobe Acrobat 7 from open and displaying message like the file is damaged and could not be repaired. This is the exception stack,
    <H1>Error page exception</H1>
    <H4>The server cannot use the error page specified for your application to handle the Original Exception printed below. Please see the Error Page Exception below for a description of the problem with the specified error page.</H4>
    <BR><H3>Original Exception: </H3>
    <B>Error Message: </B>SRVE0199E: OutputStream already obtained<BR>
    <B>Error Code: </B>500<BR>
    <B>Target Servlet: </B>action<BR>
    <B>Error Stack: </B><BR>
    java.lang.IllegalStateException: SRVE0199E: OutputStream already obtained
    <BR>    
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.getWriter&#40;SRTServletResponse.java&#40;Compiled Code&#41;&#41;
    <BR>    
         at org.apache.jasper.runtime.JspWriterImpl.initOut&#40;JspWriterImpl.java&#40;Inlined Compiled Code&#41;&#41;
    <BR>    
         at org.apache.jasper.runtime.JspWriterImpl.flushBuffer&#40;JspWriterImpl.java&#40;Compiled Code&#41;&#41;
    <BR>    
         at org.apache.jasper.runtime.PageContextImpl.release&#40;PageContextImpl.java&#40;Compiled Code&#41;&#41;
    <BR>    
         at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext&#40;JspFactoryImpl.java&#40;Inlined Compiled Code&#41;&#41;
    <BR>    
         at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext&#40;JspFactoryImpl.java&#40;Compiled Code&#41;&#41;
    <BR>    
         at com.ibm._jsp._exportResults._jspService&#40;_exportResults.java:104&#41;
    <BR>    ... there is more...
    and my code that generate pdf is,
    try {
    out = res.getOutputStream();
    PdfWriter.getInstance(document, out);
    document.open();
    Paragraph para = null;
    para = new Paragraph("Title", FontFactory.getFont("Arial", 20,Font.BOLD));
    document.add(para);
    } catch (DocumentException e1) {
    e1.printStackTrace();
    } catch (IOException e1) {
    e1.printStackTrace();
    document.close();
    please help me out because this is an urgent issue. Thanks.

    I didn't put this code within JSP, but inside javax.servlet.jsp.tagext.TagSupport. Is this the same as in JSP?
    While waiting for the answer, I also find that in TagSupport, there is a member variable, pageContext, that also has pageContext.getOut() which is a JspWriter. This is used to export to excel. But for exporting to pdf, i used PdfWriter.getInstance(document, res.getOutputStream()); and res = pageContext.getResponse();
    is this the main reason?

  • How to create an activity when system finds duplicate record!!

    Hi CRM Experts,
    I am working on CRM 5.0. We are uploading contact details to CRM through ELM.
    Here My queries are:
    1) How to create An Activity when system finds duplicate record?
    2) By using ELM we can create BP with Activities and BP with Leads. But Here, my scenario is we have to Create BP with leads and Acivities. can any one help me on these areas?
    Thank in Advance.
    Sree

    Hi Sree,
    I can help you with your first query.
    When the system finds a duplicate record then either the system stops working further or proceeds with the error free record.
    So once the duplicate entry is found only the first record will be considered and not the second or the duplicate record.
    Regards,
    Rekha Dadwal
    Kindly reward with points if usefull !!!!

  • How i create popup menu when button onclick

    how i create popup menu when button onclick

    You try adding a scrip tag in your jsp code, and calling the function in the onclick attribute.
    Example:
    <script><![CDATA[
                    function confirmDelete(){
                    if(confirm("Are you sure you want to delete selected user")){
                    return true;
                    } else{
    return false;
    ]]></script>
    <ui:button action="#{View.delete_action}" binding="#{View.delete}" id="delete" onclick="confirmDelete"/>
    Cheers
    Daniel
    null

  • How do I create working hyperlinks in embedded PDF email attachments.

    Hi,
    I have created a PDF with a working hyperlink in it leading to my website. The link works when viewing the PDF in acrobat but when I put it into the message of my email the link is no longer clickable.  I'm sure I've seen this done before but have no idea how to make it work.  I have tried various things, can anyone help?
    I am using In-design Student edition CS4 to create hyperlinks and export to PDF Acrobat reader 9. I would like to embed the pdf with working links into an Outlook 2003 message but could use Gmail or hotmail as alternatives.
    Thanks.

    Pages '09 ≠ Pages 5.01.
    You have the bugs and reduced features of Pages 5, the version you recently installed.
    Pages '09 should be in your Applications/iWork folder.
    Use that instead.
    Peter

  • How to retain the hyperlinks when converting Word doc to PDF?

    For adobe acrobat 9 pro, I can't figure out how to keep the hyperlinks working. If I create pdf from word doc by save as, it can't embed fonts, but links work. If I use "print" in word, it embeds fonts, but some hyperlinks didn't work. What to do to keep fonts embedded and links working? It drove me crazy! HELP!!!

    Depends on the version of WORD. With OFFICE 2007, go to the Adobe menu and select Create PDF (this is PDF Maker). That will save the links. A similar process is needed for OFFICE 2003. With OFFICE 2010, you will have to upgrade to AA X or add them in Acrobat manually.

  • How to create a hyperlink to a specific page in a pdf

    How can I create a hyperlink to a specific page in a pdf, that is saved on a local drive? If anybody knows the answer, please email me back at [removed]
    Your help will be greatly appreciated.

    You need the original Adobe Acrobat to edit PDF files. The free reader is just for viewing
    http://www.estello.se

  • Footnote reference hyperlinks in exported pdf

    Hi everyone,
    I have a large document with an automatic table of contents. When I created the TOC, there was an option in the table of contents styles dialogue box to check a setting called "create pdf bookmarks". I checked this and then when I exported to pdf, I made sure that the include bookmarks and hyperlinks were checked also. When the pdf was created, I was able to click on any of the TOC entries to be taken to the correct page.
    The document also has footnote reference numbers within the body text that relate to footnotes at the bottom of the page. Similar to the way the table of contents created automatic bookmarks, I wondered if there is a way to automatically create hyperlinks from the footnote reference number to the footnote at the end of the page? If yes, is there an automatic way to achieve this?
    Appreciate any assistance.

    Sorry to come back to this but I have a related question if that's ok.
    When I export to pdf from indesign, I made sure that the include bookmarks and hyperlinks was checked. When the pdf was created, I was able to click on any of the TOC entries to be taken to the correct page. However I thought that all the entries would be included in the bookmarks tab but there's nothing there when I view the pdf.
    I wondered if you could tell me how to get the bookmarks to appear?

  • How to create a page break in PDF output

    Hi there
    Does anyone know how to create a page break in the PDF output when using the EXPORT TO PDF command?
    I can create a page break using the page-break-after/before HTML stylesheet command, but this is not "interpreted" when the PDF is generated, and I am required to print each table in my web template on a new page.
    Please ... been searching for ages for a solution to this and can't find anything.
    Cheers,
    Andrew

    Try posting in the iWorks forum.
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Thick border around hyperlink in exported PDF (in some PDF viewers)

    We are seeing an issue with the formatting of hyperlinks once a report is exported to PDF.
    The problem is that the resulting PDF shows a thick black border around the hyperlink, but only when viewed in certain PDF viewers.  For example, the formatting looks fine in various versions of Adobe (both Reader and Acrobat), but when viewed in PDF Converter Pro (our company's new standard) we see the thick black border.
    Also, GSview completely chokes and refuses to display the PDF.  Not sure if this error message is a red herring..
    The problem occurs in PDF's created by the following Crystal environments:
    - Full version of Crystal 2008 designer (even though Print Preview looks okay)
    - A .NET web application built on Crystal 2008 components
    - A .NET Windows application built on Crystal 8.5 components
    It seems that our PDF output file has had this problem for at least the two years that we have been generating these reports, but was not noticed until we switched to a new standard PDF viewing application ([PDF Converter Pro|http://www.nuance.com/imaging/products/pdfconverter.asp]).
    Initially, I thought that Crystal was relying on our installed PDF creation tool to generate the PDF, but I understand from this thread that Crystal uses its own PDF engine:
    [Version of PDF export Engine|Version of PDF export Engine]
    Any advice would be appreciated.  From what I have learned so far, I think our best option might be to find a way to get users to use Adobe Reader to view the problematic PDF files.
    Edited by: Shannon Wagner on Sep 23, 2009 5:16 PM - (Removed GSView output since it seemed to be messing up the format of the post.)

    Hola,
    does anyone know if this bug (and yes, it is a bug), has been fixed in any later version of crystal reports ?
    I am using Crystal 2008 and any object with a defined hyperlink is getting a black border written into the PDF when the settings on the control explicilty say 'None' for all 4 borders of the object. This is true when the pdf exported from CR is viewed on the latest versions of Snow Leopard (Mac OSX 10.7) on any Mac computer.
    This is a posting for a mac forum circa 2009 which still applies at the the time of my posting here - http://hintsforums.macworld.com/archive/index.php/t-106893.html
    The problem is that the PDF exported from CR is being generated with the following settings for the border of the affected objects:
    /Border [ 10 10 10 60 ]
    if the top,left,right,bottom border in CR is set to 'None', then the reports designer should actually be outputting this:
    /Border [ 0 0 0 0 ]
    if you open the PDF in TextEdit on the mac and make the above change, the borders disappear. However this is obviously not a suitable work-around for an end-user.

Maybe you are looking for

  • Product cost by sales order with Valuated Sales order stock

    Hi Gurus, I am working on Poduct cost by Sales Order with Valuated stock. but i have doubt ragarding to Cost estimation. 1.In sales order scenario also Standard Cost estiamtion (CK11n and CK24) and Marking, Releasing is Mandatory? if not how can we e

  • Smart album file size (megabytes) and/or file size (hxl)

    Hi, Is it possible to create smart album like: pic being < 50ko or lentgh being < 480 ? Thanks Benoit

  • How can I stabilize a synchronized clip?

    Here is the problem: After importing my video footage into FCPX in syncronized some clips with audio, which was recorded seperatly. When I add one of those syncronizedd clips to the timeline it is not possible to stabilize the clip or to remove rolli

  • DBA role required to see indexes in Other Users schema

    When my developers try to view indexes owned by other users that are unable to see them unless the have been added to the DBA Role. Is this a requirement to view indexes owned by others? Are there lesser privs than DBA that will allow this?

  • Not seeing items moved to trash

    I am not seeing my items when I move them to the trash. The items appears to be gone as soon as it goes in the tarsh.