Internal links (cross-references) do not direct to the correct location

I am creating a glossary in Word 2003 that I would like to convert into PDF. I stored each entry as a bookmark (header) in Word, and many links throughout the document redirect to these bookmarked articles.
When I convert to PDF (using Acrobat 8 Pro) the bookmarks and links come through, but now clicking a link brings you to the top of a page, rather than to a specific entry. The bookmark will bring you to the exact location, but the links are not as precise.
I bought Acrobat for the specific task of creating this glossary, so this is a very frustrating issue to discover.
Does anyone have ideas on how I can get linking to redirect to a specific line/word?

Hello,
No, we were never able to solve the issue. We decided to unlink the files
and use only Robohelp instead of FM-Robohelp.
Yadira
Yadira Chaves
Technical Writer
Atrion International Inc.
Tel: +1.514.337.2114
Fax: +1.514.337.2115
Mailto:[email protected]
http://www.atrionintl.com/ & http://www.reachlegislation.com
Address: 4777 Levy, Montreal, Quebec, H4R 2P9, Canada
Avis:
Ce message ainsi que les éventuelles pièces jointes constituent une
correspondance privée et confidentielle à l'attention exclusive du
destinataire désigné ci-dessus. Si vous avez reçu ce message par erreur
nous vous remercions d'en informer l'expéditeur puis d'effacer
immédiatement ce message de votre système.
Disclaimer:
This e-mail and any attachments is a confidential correspondence intended
only for use of the individual or entity named above. If you have received
this communication in error, please notify the sender, and then delete
this message from your system.
From:
Pingjing <[email protected]>
To:
Yadira Chaves <[email protected]>
Date:
08/30/2010 01:34 PM
Subject:
Some FM cross-references do not convert to
hyperlinks in RH
Did you solve this issue yet? I have the exact same issue.
Thanks.

Similar Messages

  • [svn] 3580: MXMLG-243 - Path does not draw in the correct location when width and height are set

    Revision: 3580
    Author: [email protected]
    Date: 2008-10-10 16:24:50 -0700 (Fri, 10 Oct 2008)
    Log Message:
    MXMLG-243 - Path does not draw in the correct location when width and height are set
    Fixed MatrixUtil.transformBounds to offset the four bound points by the origin
    Bug: MXMLG-243
    QA: Yes
    Doc: No
    Review: Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/MXMLG-243
    http://bugs.adobe.com/jira/browse/MXMLG-243
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/utils/MatrixUtil.as

    Hi,
    For web application problem, please post your thread in
    ASP.NET forum.
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to &quot;Mark as Answer&quot; the responses that resolved your issue. It is a common way to recognize those who have helped you, and
    makes it easier for other visitors to find the resolution later.

  • Line not drawing at the correct location.

    I have a JPanel inside a JScrollPane I am drawing on and drawing is going good except for one problem. At the very end of my paint method, I want to draw a vertical line on the panel that is exactly in the middle of the current visible rectangle. From what I can tell, it should be repainting in the dead center every time repaint is called, but for some reason it isn't.
    Here is my paintComponent method:
        public void paintComponent(Graphics g)
            int wordWidth = 0;
            int wordHeight = 0;
            int duration = 0;       
            super.paintComponent(g);       
            g2d = (Graphics2D) g;
            g2d.setFont(font);
            /* draw a gradient background */
            g2d.setPaint(new GradientPaint(0, 0, new Color(100, 100, 100), 0, this.getSize().height, new Color(255, 255, 255)));
            g2d.fillRect(0, 0, this.getSize().width, this.getSize().height);
            /* draw lines for each note */
            g2d.setColor(Color.BLACK);
            for (int i = 0; i < GuiConstants.notes.values().length; i++)
                g2d.drawLine(0, (int) (GuiConstants.SONG_DISPLAY_HEIGHT - ((GuiConstants.SONG_DISPLAY_HEIGHT / 24) * (i))), this.getSize().width, (int) (GuiConstants.SONG_DISPLAY_HEIGHT - ((GuiConstants.SONG_DISPLAY_HEIGHT / 24) * (i))));
            synchronized (words)
                for (int i = 0; i < words.size(); i++)
                    /* get the width and height of the text so we can draw a box around it */
                    wordWidth = g.getFontMetrics().stringWidth(words.get(i).getLyric());
                    wordHeight = g.getFontMetrics().getHeight();
                    /* get the duration of the word */
                    duration = ((words.get(i).getEndSample() / 200) - (words.get(i).getStartSample() / 200));
                    /* draw the main box that the text sits in */
                    g2d.setColor(Color.DARK_GRAY);
                    g2d.fillRoundRect(words.get(i).getPoint().x, words.get(i).getPoint().y, wordWidth, wordHeight, 3, 3);
                    /* draw a box that will be a duration */
                    if ((i % 2) == 0)
                        g2d.setColor(Color.BLUE);
                    else
                        g2d.setColor(Color.ORANGE);
                    g2d.fillRoundRect(words.get(i).getPoint().x, words.get(i).getPoint().y, duration, wordHeight, 3, 3);
                    /* draw the text in the box */
                    g2d.setColor(Color.WHITE);
                    g2d.drawString(words.get(i).getLyric(), words.get(i).getPoint().x, words.get(i).getPoint().y + 16);
            /* draw vertical line in the middle of the panel */
            int x = ((int) this.getVisibleRect().getX()) + ((int) this.getVisibleRect().getWidth() / 2);
            System.out.println("Drawing line at " + x);
            g2d.setColor(Color.RED);
            g2d.drawLine(x, 0, x, GuiConstants.SONG_DISPLAY_HEIGHT);
        }This section is the other part I am having problems with.
    /* draw vertical line in the middle of the panel */
            int x = ((int) this.getVisibleRect().getX()) + ((int) this.getVisibleRect().getWidth() / 2);
            System.out.println("Drawing line at " + x);
            g2d.setColor(Color.RED);
            g2d.drawLine(x, 0, x, GuiConstants.SONG_DISPLAY_HEIGHT);When the panel displays for the first time, the line is painted directly in the center. When I click the right arrow on my JScrollPane, the output to the console says that is it drawing at the correct point, but actually the is never repainted and it moves with the panel as I scroll across. Now, if I click in the middle off the scrollbar to force the scrollbar indicator to scroll to where my mouse is pressed, it actually repaints correctly.
    I am just confused on how I can be printing to the console the correct location where it "says" it's painting, but it doesn't actually repaint. Any ideas?

    so wouldn't putting a panel in front of it prevent me from being able to main panel I am painting to?wouldn't it be easier to whip up a simple app, to test?
    (take only 5 minutes)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      int xPos, yPos;
      public void buildGUI()
        JPanel overlayPanel = new JPanel();
        OverlayLayout overlay = new OverlayLayout(overlayPanel);
        overlayPanel.setLayout(overlay);
        JPanel draggingPanel = new JPanel(null);
        final JLabel label = new JLabel("Drag me");
        label.setBorder(BorderFactory.createLineBorder(Color.BLACK));
        Dimension dim = label.getPreferredSize();
        label.setBounds(50,50,dim.width,dim.height);
        draggingPanel.add(label);
        final JPanel linePanel = new JPanel(){
          public void paintComponent(Graphics g){
            super.paintComponent(g);
            g.drawLine(getWidth()/2,0,getWidth()/2,getHeight());
        linePanel.setOpaque(false);
        overlayPanel.add(linePanel);
        overlayPanel.add(draggingPanel);
        JFrame f = new JFrame();
        f.getContentPane().add(overlayPanel);
        f.setSize(400,300);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
         label.addMouseListener(new MouseAdapter(){
          public void mousePressed(MouseEvent me){
            xPos = me.getX();
            yPos = me.getY();
        label.addMouseMotionListener(new MouseMotionAdapter(){
          public void mouseDragged(MouseEvent me){
            Point me_p = me.getPoint();
            Point l_p = label.getLocation();
            label.setLocation(l_p.x + me_p.x - xPos,l_p.y + me_p.y - yPos);
            linePanel.repaint();
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • Cross-reference does not work inside the object states

    Hi All,
    I use InDesign CS5.5. I have four pages document. first three page has full for text and the fourth page has multi-state object. I am trying to insert the cross reference from the third page to the multi-state object (fourth multi-state object). when I export to SWF and click the cross-reference it does not got to the fourth state, but it goes to only on the first state. can any one help me how to add the cross-reference?
    I have tried on the other way. i have inserted the text anchor on the fourth multi-state object and tried to add cross-reference, still it does not work.
    am i doing something wrong or InDesign does not have this feature.
    please help.
    thanks.
    Regards
    Ramji V K

    @Ramji V K – Do we have a "terminology problem" here?
    Do you really mean a "Cross-Reference" or do you try to control the MultiStateObject (MSO) by a "Button" that does not work propperly?
    I did not do anything with the "Cross-Reference" feature yet, so I might be on the wrong trail…
    Uwe

  • Problem deleting cross-references: Deleted cross-references do not convert to correct text

    This helpful page states that, "When you delete a cross-reference, the source cross-reference is converted to text."
    I use InDesign to create user's manuals, which are full of cross-referenced page numbers.
    The cross-references are all internal to a single document, they do not link to other documents. Each cross-reference is linked to paragraph text and the cross-reference format is Page Number.
    I find that whenever I delete a cross-reference, the cross-reference does convert to text; however, the text—which in this case is a page number—is wrong.
    For example, this sentence is on page 16:
    "You can measure your heart rate using either the handgrip heart rate monitor or an optional chest heart rate monitor (see page 21 for information about the optional chest heart rate monitor.)"
    Screenshot:
    However, when I delete the cross reference, the sentence now reads:
    "You can measure your heart rate using either the handgrip heart rate monitor or an optional chest heart rate monitor (see page 16 for information about the optional chest heart rate monitor.)"
    Screenshot:
    Now, to my mind, the cross-reference should have converted to the text "21," since that is what the cross-reference said (and it is the correct page number for the optional heart rate monitor text that is being referred to).
    Instead, the cross-reference converted to the text "16," which is the number of the page that the sentence is actually on, but is most definitely not what the cross-reference said and is not the correct page number to boot.
    Do any of you know the reason this happens?
    Is there a way to make the text convert to the correct page number when the cross-reference is deleted?

    Update: The cross references work when I export the book as Print PDF. Sadly this solution does not work in my case, because all my interactive element are disabled when exporting as Print PDF.

  • Maintaining internal word cross references in word import

    I'm using RoboHelp 9.0.1 trying to import Word 2007 (docx) in order to generate a WebHelp. I have adjusted my style mapping in order generate an appropriate TOC with books and matching sub chapters, which works fine. However, internal Word cross references from the original Word document are not transformed into hyperlinks.
    I have already tried/verified the following:
    - The "convert cross references to hyperlink" option is checked in the RH-Word import settings.
    - I also tried fiddling with the Framemaker options as it is suggested in another thread (see beneath), with no success.
    - Within the Word source document I tried both options with "use hyperlinks instead" when creating cross references.
    - The RH-HTML source, in all of my attempts, does not show any links in the corresponding locations.
    What may I be missing here? According to another, similar thread, the feature should work and is really not that challenging:
    "RH9 - Can not create ANY links in linked Word documents"
    http://forums.adobe.com/thread/854095?tstart=0

    In my testing, I got a link in the RH topic, but it wanted to launch the target Word doc instead of jumping to the desired RH topic. I'd say this sounds like a bug - so go ahead and report it.

  • Some FM cross-references do not convert to hyperlinks in RH

    Some existing cross-references as well as new cross-references in a specific chapter within a book are not converted into hyperlinks in RH. The cross-references work fine in FM. Cross-references in other chapters in the book are converted correctly.  The problem started after  I killed Robohelp with the UI froze while performing an Update All.
    After re-opening the project and updating the linked files in RH, a different character tag (blue italics) was automatically applied to the cross-references that were not converted to links. We tried deleting and recreating the cross-references, deleting and re-linking the affected chapter and importing the character and cross-reference formats from another book, but nothing has helped. Any ideas on what can we do to fix this problem?

    Hello,
    No, we were never able to solve the issue. We decided to unlink the files
    and use only Robohelp instead of FM-Robohelp.
    Yadira
    Yadira Chaves
    Technical Writer
    Atrion International Inc.
    Tel: +1.514.337.2114
    Fax: +1.514.337.2115
    Mailto:[email protected]
    http://www.atrionintl.com/ & http://www.reachlegislation.com
    Address: 4777 Levy, Montreal, Quebec, H4R 2P9, Canada
    Avis:
    Ce message ainsi que les éventuelles pièces jointes constituent une
    correspondance privée et confidentielle à l'attention exclusive du
    destinataire désigné ci-dessus. Si vous avez reçu ce message par erreur
    nous vous remercions d'en informer l'expéditeur puis d'effacer
    immédiatement ce message de votre système.
    Disclaimer:
    This e-mail and any attachments is a confidential correspondence intended
    only for use of the individual or entity named above. If you have received
    this communication in error, please notify the sender, and then delete
    this message from your system.
    From:
    Pingjing <[email protected]>
    To:
    Yadira Chaves <[email protected]>
    Date:
    08/30/2010 01:34 PM
    Subject:
    Some FM cross-references do not convert to
    hyperlinks in RH
    Did you solve this issue yet? I have the exact same issue.
    Thanks.

  • Cross References Will Not Display Page Number

    Got some documents created in InDesign CS3 (MAC). When bringing them into CS4 (Windows) and trying to create a paragraph cross-reference the page numbers will not display. All the other text in the cross reference ("paragraph", the word "page", etc.) displays correctly. Even the cross reference under the "hyperlinks" toolbar shows nothing (instead of the usual # indicating a page number).
    However If I copy some of the same pages into a new document and create a cross reference in it the page number displays correctly. But since it's over 300 pages I really would hate to have to do that!
    Any ideas?

    Is it maybe because CS3 does not include the cross references function (not a feature until CS4)?
    That's a real problem if we use an outside source to create a lot of our documents and they're working in a previous version.

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • I can't scan from my HP Photosmart C4440; not direct from the scanner to pc nor vice versa

    I can't scan from my HP Photosmart C4440; not direct from the scanner to pc nor vice versa, Please help me ASAP, Thanks everyone, I'm stuck with a homework!

    Hello  @Roberto3 , and welcome to the HP Forums, I hope you enjoy your experience!
    I see you are having issues scanning. I'd like to help!
    Are you able to make a copy as opposed to a scan?
    Do you have any errors come up when scanning?
    I'd recommend starting with a power reset.  Disconnect the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug the printer back in. Ensure you plug the printer directly to a wall outlet. Make sure to bypass any sort of surge protector or power bar.
    I would also recommend downloading and running the HP Print and Scan Doctor.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Possible to take notes direct in the pdf (with pen)

    i use this program in my work, as i am building a electrial cabinets
    but i miss the function of taking notes directly in the pdf, and being able to "check" (make a mark) with my touch pen where i am and what i have done.
    but this program is not able to take notes like that it seems?
    i use adobe reader in an android tablet also, and the funktions in that program are excellent. i want those funktions in my windows tablet
    is it possible?
    Thanks / Anders

    Assuming that you are running Windows 8/8.1/RT/RT 8.1, Microsoft Reader is already preinstalled on your system. 
    Here's how to find Microsoft Reader and launch it.
    1. Open the Search Charm.
    Touch: Swipe in from the right edge of the screen and tap the Search button.
    Mouse:  Point to the upper-right or the lower-right corner of the screen and click the Search button.
    Keyboard:  Press the Windows key + S.
    2. Enter "Reader".
    3. Select Reader (with the white logo on the orange background).

  • I can't import my movies to work on them. They are coming from a external hard drive, not directly from the camera, its type mpeg-e (.mts)

    My movies are type MPEG-2
    I can't import my movies to work on them. They are coming from a external hard drive, not directly from the camera, its type mpeg-2 (.mts)
    What can I do ?

    1. Is your external HD connected by firewire?
    2. mpeg2 is the final compressed delivery format of a DVD, not intended for editing, and iMovie cannot handle such files, so you need to convert them first:
    For that you need mpegStreamclip:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://www.apple.com/quicktime/mpeg2/
    which is a mere $20.

  • The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the

    When i tried to login in inbrowserediting.adobe.com i see that:
    The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user.
    What does it mean? What is problem?

    Hi,
    I have just created my First website using Muse and Its all been uploaded to my FTP server but i cant access the in browser editing which was the whole reason why i re-done the website for my client using muse
    its saying the following
    "The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user. server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user."
    Yet i Can access my website fine "www.calmwood.com.au"
    My ftp server responds to either the IP Address or the DNS Address www.calmwood.com.au
    so i am not understanding how it thinks its different. when its fully referenced
    any help would be appreciated.
    thanks

  • HT1849 when I download album works from itunes it does not associate with the correct artist

    when I download album works from itunes it does not associate with the correct artist

    Where are you looking to download them from ? You might be able to redownload them via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your Mac's iTunes. If that album shows there but doesn't have the cloud symbol against it for redownloading then that implies that it's still in your iTunes library

  • Item values not listing in the correct order.

    Hi,
    When I click on header record synckey link, the corresponding item records are not listing in the correct order, in the MI Client. Can anybody suggest a solution for this.
    Regards,
    Shemim

    Hi Divya,
    I am attaching sample data obtained at Back End & MI Client.
    Value in Back End
    PHYSINVENT FISC ITE MATERIAL           PLAN STGE
    1000015    1998 001 T-RF100            1100 0001
    1000015    1998 002 T-RF200            1100 0001
    1000015    1998 003 T-RF200            1100 0001
    1000015    1998 004 T-RF200            1100 0001
    1000015    1998 005 T-RF300            1100 0001
    Value in MI CLient
    SYNC_KEY PHYSINVENTORY FISCALYEAR ITEM MATERIAL PLANT STGLOC
    0001001234  0001000015  1998  005  T-RF300  1100  0001   
    0001001233  0001000015  1998  004  T-RF200  1100  0001   
    0001001232  0001000015  1998  003  T-RF200  1100  0001   
    0001001231  0001000015  1998  002  T-RF200  1100  0001   
    0001001230  0001000015  1998  001  T-RF100  1100  0001   
    Regards
    Shemim

Maybe you are looking for

  • Error in MSSQL Code unable to figure out error

    I have a program, that updates a table, it inserts the following: strSQL = "INSERT INTO test-vm_info(info, DateTime) VALUES ('Program Started','1/10/2015 9:29:50 PM')" it fails with error:  Incorrect syntax near '-'. I created the database with the -

  • Application Certification With APEX 10G XE

    Hi all, Has anyone implemented Application Certification to the application developed in Oracle Application Express 10G XE? My requirements are: Accessibility - check against WCAG and Section 508 guidelines Usability - check against Usability.gov and

  • RMAN duplicate Database

    Hi ALL, While doing duplicate database using RMAN i m getting following error. released channel: d1 RMAN-00571: ================================= RMAN-00569: === ERROR MESSAGE STACK FOLLOWS ====== RMAN-00571: ======================================= R

  • HELP! Inbox Keeps Refreshing!

    I have my Mac Mail tuned to my University of Connecticut account. Every time I open the app, I have loads of new emails, because every time the app opens, every bit of mail, even the ones I open before, somehow refresh and become marked as UNREAD. I

  • WiFi Security for a hostapd Access Point

    Hi,     I configured a TP-LINK TL-WN721N to serve as an access point using hostapd. I'm using WPA2, and I've set up MAC filtering, and a 16 character alphanumeric password from GRC. What else can I do to make my network more secure? This is my first