Problem - Hyperlinks change on export to PDF

Working in Indesign 7.0.3 and Snow Leopard 10.6.5
I have been asked to design a publication that will include hyperlinks to other files (PDFs and Word documents) on the client’s network.
The client has supplied as the source a Word document with hyperlinks that start with:
\\Nwfileprintvm\vol1\shared\...  and so on which (I presume) goes to a document on their network.
When I import the Word document into InDesign, the hyperlinks come in the same way. I have set up the hyperlinks as “Shared Destination” links, as there will be several separate links to the same destination in the InDesign document.
However, when I export the InDesign document to its final form as a PDF, the hyperlinks in the PDF are somehow automatically prefaced with a location on MY local hard drive (my working folder for the document). They become:
File:///Volumes/LaCie750/… and so on until they pick up the rest of the file path starting with \\Nwfileprintvm … as above.
I am exporting using [Smallest file size] since the PDF will be viewed on screen, and with “Include Hyperlinks” ticked.
So, if I deliver this PDF to the client, it looks like it will try to link back to my hard drive, rather than their network drive.
What am I doing wrong? How can I export a PDF where the links point to the client’s network rather than my local drive?

Yes, the hyperlink is defined correctly, without the preceding code linking to my hard drive.
In the hyperlink panel the full path is:
\\Nwfileprintvm\vol1\shared\Business Development\Program Support\Ten things.doc
When I export to PDF, the link becomes:
file:///Volumes/LaCie%20750/Work%20in%20progress/New%20work/Project%209999%20NewProject/\\ Nwfileprintvm\vol1\shared\Business Development\Program Support\Ten things.doc

Similar Messages

  • Format Changes when Exporting to PDF

    I'm using Crystal 12.0 and have an issue very similar to these threads listed below. 
    While viewing a report on my development machine, all is fine.  I can export to PDF and the formatting is OK. 
    However, when the report is exported to PDF on the web server, the spacing between some of the text is off.  The spacing is used for a CrossTab cell in a "Display String" that I changed using "Format Field."   All that's supposed to happen here is several spaces are used to move the text under the proper column. 
    When exporting to PDF on the web, the text moves over to the left like it's missing some of the spaces.  I wondering if the below threads apply to Crystal 12.0. 
    Thread:1220516 and
    Format Changes when Exporting to PDF
    Thanks kindly for your assistance,
    -Marty

    I'm having a very similar problem using Crystal Reports for Visual Studio 2008. Everything is perfect when running in VS 2008, it takes the report and exports it to PDF format via VB code. The PDF file is idenitcal to the report. However, when run on the server the one page report (when exported to PDF) gets chopped into ten 4x4 chunks. So the PDF file is 10 pages....its like puzzle pieces of the original.
    I've drawn a bunch of lines on the report to look like boxes - perhaps this is causing issues? The font on the report is Arial.
    The server has the 10_5 runtime installed and it is set to the same default printer as the development PC. I have been stuck on this for days and would really appreciate any advice you may have.
    Thanks!
    Edited by: WanderingEye on Sep 18, 2009 4:54 PM

  • Why does object sequence change once exported to PDF?

    I have a two-page spread that shows exactly how I want it to in Preview.  But once I export to PDF the sequence of the objects has changed (blocking an object that needs to be on top).  I can see the object when the pdf is opened, but just for a second.  I don't know if this is an InDesign problem or an Acrobat problem.  I'm using CS4 and exporting to Acrobat 8.
    In the file "Step" and "Out" should be on top.  "Step" gets covered up, but "Out" does not.

    This is the cross-spine bug. You have four choices:
    1) Take this back to CS3.
    2) Reconstruct things on your master spread so that text boxes don't cross the spine.
    3) Move the problematic cross-spine elements off the master onto a live page.
    4) Wait for a patch. A number of people have been bit by this, but the only reports I've seen have been quite recent, all in the last few months.
    Ken

  • Problem When Multiple Users Export To PDF Simultaneously

    I am hoping someone out there can help.  We have had no luck at all with Crystal Reports / SAP support for this issue.
    We have a client/server aplication and have written a C# program to load a crystal report on the server, export it to PDF and then we send the PDF to the client. We are using Crystal Reports 2008 and have applied SP4.
    The scenario is as follows:
    Two users log into our application from different PC's.
    User 1 prints a report with no issue.
    User 2 prints a report 5 seconds later with no issue.
    If User 1 prints a report and while that report is being exported to PDF, User 2 prints a report, the first will be successful and the second will fail.  If User 2 reprints the report after receiving a failure, the report prints successfully the second time (using the same temp report folders as the previous attempt). We have done a lot of tracing and have narrowed the problem down to the point in out C# program when the cryRpt.Export() routine is called.  It seems to be what is failing and doesn't seem to be able to run 2 exports simultaneously.
    All exporting to PDF occurs on the application server and the processes run as "Administrator" so permissions should certainly not be a problem.  Each user is printing a different physical .rpt file and the data for each report is in a different physical directory.
    Has anyone come across this before or have any suggestions?

    We thought the same thing as you suggest and have already made that change without sucess.  Below is what the code looks like for our export routine.  Perhaps you can spot something we have not.  As mentioned before the export appears to be faulting at the statement "cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);" in the below code.
    The code is as follows:
            public void exportReport(string xmldir, string crname, string pdfname, string termid, bool debug)
                try
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Start exportReport: " + crname);
                    ReportDocument cryRpt;
                    cryRpt = new ReportDocument();
                    cryRpt.Load(crname, OpenReportMethod.OpenReportByTempCopy);
                    if (debug)
                        tw.WriteLine("Done loading report: " + crname);
                    int tmpct = 0;
                    int tmpint = crname.IndexOf("
    ", tmpct);
                    while (tmpint != -1)
                        tmpct = tmpint;
                        tmpint = crname.IndexOf("
    ", tmpct + 1);
                    string ODBCReportFileName = crname.Substring(tmpct + 1, crname.Length - tmpct - 5);
                    if (debug)
                        tw.WriteLine("ODBC Report Filename: " + ODBCReportFileName);
                    Database crDatabase;
                    Tables crTables;
                    Table crTable;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo crConnectionInfo = new ConnectionInfo();
                    //Setup the connection information structure to log on to the data source for the report.
                    // If using ODBC, this should be the DSN. If using OLEDB, etc, this should be the physical server name
                    crConnectionInfo.ServerName = "SH" + ODBCReportFileName;
                    if (debug)
                        tw.WriteLine("Resetting connection to: " + crConnectionInfo.ServerName);
                    crConnectionInfo.DatabaseName = "";
                    //Get the table information from the report
                    crDatabase = cryRpt.Database;
                    crTables = crDatabase.Tables;
                    //Loop through all tables in the report and apply the
                    //connection information for each table.
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables...");
                    for (int i = 0; i < crTables.Count; i++)
                        crTable = crTables<i>;
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo =
                        crConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);
                        if (debug)
                            tw.WriteLine("Applying new connection to tables " + crTable.Name);
                    cryRpt.Refresh();
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables... DONE");
                    if (debug)
                        tw.WriteLine("Target report: " + pdfname);
                    cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);
                    if (debug)
                        tw.WriteLine("Export Complete");
                    cryRpt.Dispose();
                    cryRpt.Close();
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Done export to PDF.");
                catch (Exception e)
                    TextWriter tw1 = new StreamWriter(logpath + "
    exporterror.log", true);
                    tw1.WriteLine("Exception when export report: " + e.Message);
                    tw1.WriteLine(e.StackTrace);
                    tw1.Close();

  • Help keeping hyperlinks active when exporting as PDF!

    Any ideas on how to maintain the bookmark and figure hyperlinks when viewed as a PDF?.. The links work fine on the iPad and within iBA but once exported as a PDF links will not work on my Mac or other computers the PDF is sent to. Apple's support page says hyperlinks should work, however I have not had any success with them. Does anyone have any suggestions on how to get them to work?
    Thank you.

    None work for me.
    If that's critical for an ebook, use another tool such as Pages, InDesign, calibre, etc.
    Ken

  • Color changes when exporting to PDF from Apple Pages or Word

    When I export to PDF from Apple Pages or Microsoft Word, there is a noticable color shift.
    The RGB color values that are 23, 76, 140 in Pages for a medium shade of blue like this but appear as 50, 61, 134 with a decidedly purple cast like this in the PDF.  
    Has anybody else run into this problem?  Any tips for troubleshooting?

    Thanks for the reply.  It was created using Apple Pages. I tried exporting to PDF in two different ways, both with the same result.
    1. Within Apple Pages, one can click File > Export > PDF
    2. The other option is to click Print > PDF > Save as PDF
    I also tried this second method with Microsoft Word, and again the color was altered.  Any suggestions that you can provide to resolve this issue will be very helpful.

  • AI graphic placed in ID CS4 doc changes when exported to PDF

    Hi,
    I'm attempting to export a 6-page ID CS4 document to PDF, and am having inconsistencies in how the graphics look once they're exported.
    I am linking to the exact same Illustrator file when placing the logo on each page, but when I export to PDF, only two of the logo images come out accurately (like below):
    The other four come out with an additional black and red outline (like below):
    I'm at a loss as to why these outlines are appearing.   Does anyone have advice on what kind of newbie mistake I'm making, here?
    Thanks in advance for any help!
    Laura

    Thanks for all the help - I am definitely willing to work to find the answers!
    Bob - I'm viewing the PDF in Acrobat Pro.  I'm not sure how much detail you need in the export settings, but the Export Layers option is set to Visible Layers.  I tried exporting with the other two options and the problem still exists.
    Eugene, Peter & Jeffrey - I went to the Illustrator file and found some extra colors in there.  I removed them, thinking that would solve it, but when I relinked and exported it did the same thing.
    I just did a test print, and it actually prints correctly - it's just during the viewing of the PDF where the problem occurs.

  • Problems with bleed and exporting to PDF.

    Hi,
    I am having a slight problem exporting a file to pdf in Indesign CS3.
    I have my documents set up with a 3mm bleed and I have made sure that the images and work extend passed the bleed marks as they should. The problem is that when I export to pdf, the pdf file appears to have cropped the work exactly on the bleed line leaving nothing extending passed the bleed. The 3mm bleed area is still there but nothing is extending into it which is kind of pointless. I don't know whether there is a setting I am missing or something like that but any help on this matter would be greatly appreciated.
    Cheers

    "It appears to crop it exactly on the bleed line."
    for the record, isn't that what it's supposed to do?
    Your bleed line is 3mm outside the trim. Anything you bleed will be contained in that 3mm band. If you hang any more than 3mm off the edge, only the 3mm in the bleed band will show on the PDF.
    k

  • Hyperlink rollover when exporting to PDF from InDesign

    I am creating an interactive PDF in InDesign. The first page has links to different URLs. I would like to change the text that shows up with the rollover text over each hyperlink when viewed as a PDF. It shows the URL automatically, I'd like to write the company name associated with each site to make it look more streamlined. Is there a way to do this? Thanks!

    I am creating an interactive PDF in InDesign. The first page has links to different URLs. I would like to change the text that shows up with the rollover text over each hyperlink when viewed as a PDF. It shows the URL automatically, I'd like to write the company name associated with each site to make it look more streamlined. Is there a way to do this? Thanks!

  • Why does text color change when exporting to PDF?

    I have a white background.  In a textbox, I have black text and white text.  When I export to a PDF, the black text stays black but the white text changes to black.  Any idea why that happens?
    I have a similar situation with shapes.  I have a black circle and a textbox on top of it.  There is white text in the textbox.  When I export, the white text here also changes to black.  So you can't see it in the PDF (becuase of the black circle).

    I do not get the problem.
    All text stays the correct color. Black is black and white is white in the pdf.
    Are you opening this on a Mac in Preview, or are you opening it in Adobe Acrobat?
    I have opened my .pdf (it would have helped if you had posted your problem pdf) in Acrobat on a Mac and that also has opened correctly.
    I tried both exporting and printing to .pdf both work in Preview and in Acrobat.
    Are you doing something else you have not told us about?
    Peter

  • Problems with the report export in PDF format

    Hi All,
    I am new to this forum.
    I'm developing a web application that uses Java Reporting Component (JRC) to display crystal reports.
    I have three problem:
    1) I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without opening it
    with Adobe Reader (Microsoft Word). The class of API JRC used for export is ReportExportControl.
    2) I want to print multiple reports one after the other to reduce the time (possibly joining two or more reports into a single PDF)
    3) I want to insert, in the jsp page filters, the number of pages to print from the same report (without
    opening it with Adobe Reader (Microsoft Word))
    Can anyone help me? or can give a simple java code to do the same.
    Thanks in advance.

    Hi, this works for me in 4.6B:
      CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
            BIN_FILESIZE            =
               filename                = i_pfad
               filetype                = 'BIN'
       IMPORTING
            FILELENGTH              =
          TABLES
                data_tab                = i_att_cont
          EXCEPTIONS
               file_write_error        = 1
               no_batch                = 2
               gui_refuse_filetransfer = 3
               invalid_type            = 4
               OTHERS                  = 5.
      IF sy-subrc <> 0.
        MESSAGE i000(zv) WITH 'Problem mit PDF Darstellung'.
      ENDIF.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                spoolid = spoolnr.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                document           = ' '
                commandline        = i_pfad
                program            = 'AcroRd32.exe'
           EXCEPTIONS
                frontend_error     = 1
                no_batch           = 2
                prog_not_found     = 3
                illegal_option     = 4
                gui_refuse_execute = 5
                OTHERS             = 6.
      IF sy-subrc <> 0.
        MESSAGE i000(zv) WITH 'Acrobat Reader nicht gefunden!'.
      ENDIF.

  • Problems with superscript when exporting to PDF

    If one writes in a table cell for example "100m3 tank" with 3 as a superscript, then exports the document to PDF, the
    "3 tank" disappears, likewise if one just writes "100m3", the 3 disappears. However, if you just write "m3", the three in superscript remains. Any fixes for this bug? How can I report it to Apple?

    I just came across this same problem -- similar but not exactly the same.
    Text in a table does not print properly when text is superscripted.
    This is a problem since we have a French invoice that has a fair bit of superscript. I tried to work around by decreasing the font size and increasing the baseline, but this did not work.
    I'm using Pages 5.1 and Mavericks.
    Anyone have any ideas????

  • Problem while emailing after exporting as PDF.

    I have this strange problem. Basically, we have this VB6/SQL2005 application that exports crystal report into pdf attaches it to email and then send it in email...now most of the time and i would say about 95% of time, the email goes fine and they receive it fine. But recently it has started where they dont receive email on the other side. No rejection email message. No bounce back message.
    Becuase of different email clients on the other side, it is very hard to pin point the problem.
    We are using Crstal XI.
    Any help would be appreciated..
    Thanks
    Raj

    It may be the other mail server is detecting the attachement and blocking it. Check with them first.
    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Color change on export to PDF

    We use an application called Autodoc HSE which relies on hidden text in reports to redirect printed output to email, fax or printer.  It looks for the colour code 254, 254, 254 and anything in this colour is interpreted by Autodoc as a command. 
    It appears however that when a report is printed from Webi it first goes as a PDF and the colour is rounded to 255,255,255 which is pure white (instead of the off white).
    We cannot change the Autodoc command colour for two reasons, firstly because we have so many other systems using this colour and secondly because we could use pure white as a valid colour and do not want that text interpreted as an autodoc command.
    Does anyone know how we can force the colour to remain at 254,254,254 when the PDF is created?
    I have seen the documents relating to Excel colours but they do not seem to relate to this issue.
    Thanks

    Hi HuonAqua ,
    Can you please check the following SAP Note: -
    [Cell background and foreground colors do not retain their shade when exporting a Desktop Intelligence document to PDF |https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3131383233333826]
    Though it applies to DESKI, I would requst you to check it in both WEBI and DESKI.
    If it does not help in fixing the issue, do let us know. Also, please do let us know the exact version of the entire setup of Enterprise at your end.
    Regards,
    Abhishek Jain.

  • Is there a problem with Indesign effects exporting to PDF?

    Hi All... Since updating to the latest version of Indesign, I can't seem to get my effects to work when I export into a PDF? Am I doing something wrong or is there a problem with the new version of Indesign? I have a job that I'm urgently trying to get out but can't get the drop shadow or bevel emboss to transfer to the PDF that needs to go to my client? Can anyone help me with this ASAP pleeeeease???

    RAZ! wrote:
    It looks OK in the Indesign overprint preview and I usually have my Acrobat set to view overprint as well so I turned it off & on just in case there was something happening there, but no luck!
    I am using a spot colour in the background behind the graphic but not on the graphic itself, but I don't think that should effect it as I'm sure I've done this many times (But I am starting to doubt myself now... lol)?
    It looks OK in the Indesign overprint preview
    I am using a spot colour in the background behind the graphic but not on the graphic itself…
    That is reason, why it looks like it looks. But what happens if you replace the spot to a process color?

Maybe you are looking for

  • Error 2032 loading xml from swf

    Hello everyone. I have a php site (based on Joomla! CMS). In one php page, there is a <object> element wich loads the Adobe Flex 1.5 swf file that I have developed (Slideshow.swf). This swf file is a slideshow that loads a xml file using a httpservic

  • How many levels of hierarchy is supported in AII?

    hi,   i heard that the mobile UI supports only two levels of hierarchy... otherwise is it possible to have Container-Pallet-Case-Item such hierarchy? thanks, vinoth

  • How to determine the coverage of a WAP

    Hi We are going to start a new office where we intend to provide Wireless access to the users. Does anyone here have a good reference which I can use for calculating the number of access-points, antennas required based on the dimensions of the office

  • 3D Tween not working in Test mode or Published version

    Hi, I'm pretty much tearing my hair out with this one. I am creating a 3d tween using the 3D rotation tool and everything looks great when I play it on the timeline but as soon as I test or publish the movie, the image is static, doesn't rotate and a

  • Premiere wont open, nothing, no error, just nothing!

    Last night I was using the software working on a video, I did not finish my video, I saved it, closed the program and went to bed, today I try to open the program and I can not open it, nothing happens, no error message, nothing, just absolutely noth