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.

Similar Messages

  • When i click links I get an error message that Windows cannot find.. then puts the link i clicked... then a bunch of garbled stuff... how can i fix this?

    When I click external links, (not in a page i have open) like from other programs... I get an error that Windows cannot find ( then puts the link that I clicked) then a bunch of garbage... after this errors comes up, the page i was trying to load comes up. The error message sometimes sticks and have to ctrl alt del to close it. This didn't start until i updated to the current version. (4.0.1) Please help.... this is seriously frustrating me!

    Try:
    *http://kb.mozillazine.org/Windows_error_opening_Internet_shortcut_or_local_HTML_file_-_Firefox

  • I just purchased the ExportPDF. When I try to convert a pdf document to word online, it gives me an error. What is the problem?

    I just purchased the ExportPDF. When I try to convert a pdf document to word online, it gives me an error. What is the problem?

    Hi sampa1,
    Can you please let us know the error message you are getting while converting PDF to Word. Also, please let us know the steps you are following.

  • Before viewing PDF documents in this browser you must first launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.

    Using Google Chrome, when attempting to open a PDF document, the following message appears:
    Before viewing PDF documents in this browser you must first launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.
    On my Mac, there is no way to just open Adobe Reader and accept the ELUA.

    Hi Wade Perkins,
    Please refer cant view pdf in browser.
    Thanks.

  • Exporting PDF document to Excel.  When I export a PDF document to Excel containing lists of  people the Excel page shows all the names on  one line several inches deep instead of on separate lines which makes editing impossible.  What am I doing wrong?

    Exporting PDF document to Excel.  When I export a PDF document to Excel containing lists of  people the Excel page shows all the names on  one line several inches deep instead of on separate lines which makes editing impossible.  What am I doing wrong?

    Murray is right. Padding (and margins) is added to the width. However, when using percentages, you should never use figures that add up to exactly 100%.
    Browsers need to convert the percentages to pixels. Because pixels must be whole numbers, some percentages are rounded up, which results in the final element dropping down below its neighbours. With percentages, it's much safer to use values that add up to 98% (99% often works, but 98% is safer).

  • A hyperlink click to a pdf document in a website does not open a pdf document instead presents a blank page "searching for bookmarks"

    a hyperlink click to a pdf document in a website does not open a pdf document instead presents a blank page "searching for bookmarks"

    Check the settings as shown in the [[opening PDF files within Firefox]] article.

  • Hyperlink from within a Word Document to a specific page within a PDF document.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on, but less
    often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on,
    but less often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.
    I am not a Word guru, but I don't think you can run a macro from a hyperlink. But you can create an active X label that runs a macro when clicked. You can use the following macro to go to a specific page in a PDF file.
    Sub OpenPDFPageView(DisplayPage As Integer)
    'In order to use the macro you must enable the Acrobat library from VBA editor:
    'Go to Tools -> References -> Adobe Acrobat xx.0 Type Library, where xx depends
    'on your Acrobat Professional version (i.e. 9.0 or 10.0) you have installed to your PC.
    Dim PDFApp As AcroApp
    Dim PDFDoc As AcroAVDoc
    Dim PDFPageView As AcroAvPageView
    Dim PDFPath As String
    Dim DisplayPage As Integer
    PDFPath = "C:\Users\doudou\documents\test1.pdf"
    'Set the page you want to be displayed
    'DisplayPage = 3
    'Initialize Acrobat by creating App object
    Set PDFApp = CreateObject("AcroExch.App")
    'Set AVDoc object
    Set PDFDoc = CreateObject("AcroExch.AVDoc")
    'Open the PDF
    If PDFDoc.Open(PDFPath, "") = True Then
    PDFDoc.BringToFront
    'Maximize the document
    Call PDFDoc.Maximize(True)
    Set PDFPageView = PDFDoc.GetAVPageView()
    'Go to the desired page
    'The first page is 0
    Call PDFPageView.GoTo(DisplayPage - 1)
    'Set the page view of the pdf
    Call PDFPageView.ZoomTo(2, 50)
    End If
    Set PDFApp = Nothing
    Set PDFDoc = Nothing
    On Error Resume Next
    'Show the adobe application
    PDFApp.Show
    'Set the focus to adobe acrobat pro
    AppActivate "Adobe Acrobat Pro"
    End Sub

  • Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    If it's a Mac font and you're on Windows, you can't. If you are also on a Mac, you'll need to purchase the fonts (fonts are generally non-transferable, like software. One of the reasons pdf exists), install them and try your edits.
    But it's best to edit the original document and create a new pdf when finished.

  • How to Merge two PDF documents orginally created in different programs?

    I am trying to find information on how you can merge a PDF document created in LiveCycle and a PDF created in PageMaker or Microsoft Word?
    I know that you can easily merge two PDF documents created in the same program, but I am specifically looking for how you can merge two PDF documents created from two different programs. A step by step process would be helpful, if you have that information. Thanks.

    You use Assembler for this purpose.
    1) Assembler can be accessed through LC Java API. See http://help.adobe.com/en_US/enterpriseplatform/10.0/programLC/help/index.html
    API Quick Starts (Code Examples) > Assembler Service API Quick Starts
    2) Last week I posted on generating and merging PDF's from PostScript. Take a look at the assembly service instance in the .lca. Assembler uses DDX (Document Description XML) to describe document construction. NOTE the .lca was developed with ES 3 (aka ADEP). The .lca It contains the most basic DDX.
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="out.pdf">
      <PDF source="inDoc1"/>
      <PDF source="inDoc2"/>
    </PDF>
    </DDX>
    http://forums.adobe.com/message/4019760#4019760
    DDX Reference at http://help.adobe.com/en_US/livecycle/9.0/ddxRef.pdf
    Steve

  • Just updated my iPhone 5s from ios 8.1 to 8.3. After the install it asked for Apple ID and password and to allow it to sync to Mac and iTunes. After following the steps my phone kept restarting - turning on and off and goes blank. How do I fix this??

    Just updated my iPhone 5s from ios 8.1 to 8.3. After the install it asked for Apple ID and password and to allow it to sync to Mac and iTunes. After following the steps my phone kept restarting - turning on and off and goes blank. How do I fix this??

    I have had about 9 iOS devices at work do this. 
    The fix and it will wipe out anything on your iphone is to connect it to your computer and have the latest version on iTunes open.  Hold the Power/Sleep and Home button till it blanks out.  Keep holding the home button untill it says recovery mode on the screen of the computer and do a restore.

  • I installed the new 5.0 version and it keeps telling me I have to resart my computer. But it wont finish the install after it resarts. What is wrong and how do I fix it?

    I installed the new 5.0 version of Firefox and the thing keeps telling me i have to resart my system to finish the install of an old version. I resart and it doesnt do anything. What is wrong and how do I fix this. I have been using firfox for more than a year now and have never had trouble till this issue came up

    If the toolbar installed something into the rest of the system, you will see an entry in the Control Panel in the software uninstall applet which should be removed. You might need to make a new profile if you cannot find an extension that has something to do with the toolbar.
    http://kb.mozillazine.org/Uninstalling_toolbars

  • I changed my username on Apple, but it doesn't come up on my ipad.  The old username comes up, and I can't access itune or icloud.  How do I fix this?

    I changed my username on Apple, but it doesn't come up on my ipad.  The old username comes up, and I can't access itune or icloud.  How do I fix this?

    Hello there, Confused Apples.
    The following Knowledge Base article offers some step-by-step instruction for changing the email for your Apple ID:
    Change your Apple ID - Apple Support
    Sign out of iCloud, the iTunes Store, App Store, FaceTime, Find My Friends, Find My iPhone, and iMessage on each device that uses your current Apple ID for these services.
    Go to My Apple ID.
    Select Manage your Apple ID and sign in. Forgot your password?
    Select Edit next to Apple ID and Primary Email Address.
    Enter the email address that you want to use as your Apple ID, then select Save Changes. Apple will send a verification email to that address.
    Open the email from Apple, then click Verify Now. Didn't receive the email?
    When the My Apple ID page opens, sign in with your new Apple ID email address and password. When you see a message that verification is complete, you can start using your updated Apple ID.
    Remember to update the features and services that you use with Apple ID.
    Learn how to use and manage your Apple ID.
    Additionally, this article is helpful with what to do, after you've changed your Apple ID:
    Apple ID: What to do after you change your Apple ID - Apple Support
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Firefox 30.0 - Used to open PDF file in a new tab when clicked a link. Now new tab opens, does not show file, tab closes. How do I fix it?

    I am using Firefox 30.0. I open a page that has links on it to see some PDF files. When I click on the link, Firefox use to open a new tab and display the PDF file. Now a new tab is opened, nothing gets displayed, and the new tab closes. What setting do I need to change in order to see the PDF file.

    Firefox Menu > Settings > Application
    *Search for "PDF" > Change the Action to "Preview in Firefox"

  • I have a Windows 8.1 machine.  I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    There is no application called "Adobe" - you are either working with Adobe Acrobat or the free Adobe Reader. Open up the preferences for the application (Edit>Preferences), then go to the "General" category and modify the settings for "Scale for screen resolution". You will have to restart the application after you do that. Does that fix your problems?

  • How to run the Invoices in different groups within the batch in AP

    Need to know that how to run the Invoices in different groups within the batch. This will be of very helpful when we deal with lot of lines under one batch. (e.g) like somewhere we issued a Corporate Card to all the employees Via Bank Of America. Every Month they will send the complete details of all the employees who ever swiped the corporate provided BOA. Accordding to Natco all those lines should be loaded as One Invoice so that a Single Payment can be provided to BOA and it will also makes their life easier. This standard program sometimes it works normal sometimes it will run like a TORTOISE. So thats why in the manual they suggested to use GROUP ID to split the Invoice Load.
    So plz tell me how we can run it
    plz give me the solution
    thanks

    can you give me some material or document on that so that i can read actuaaly i need to make doc on it..

Maybe you are looking for