Display issue when using hyperlinks in Indesign

Hello all,
I have a InDesign document with a generated table of contents which is linked to the corrosponding pages. This part works great.
But if i make a hyperlink in de Header or Footer of my document to go bact to the TOC page i encounter a very nagging issue. The link works fine but not matter wat i do the page displays at 6400%. Their are various display options to choose from when linked to a page but nomatter which i choose the display always up at 6400%.
Anyone with idea's

Have you already tried recreating the preferences file for InDesign? Command+shift+option keys pressed and launch InDesign for Mac. Control+Shift+Alt keys pressed and launch InDesign for Windows.

Similar Messages

  • HTML signatures distorted inside the Signatures and Stationery window preview/edit field, but display fine when used

    I created an HTML signature and imported it into Outlook 2010/2013 by placing the .htm file into my %APPDATA%\Microsoft\Signatures folder. The signature looks and works great, however the signature looks distorted / severely squished in width when attempting
    to view the signature in the Signatures and Stationery window within Outlook. What would be causing this? Is this a common issue when using .htm signatures?
    It isn't too big of an issue as the signatures do work as expected when in normal use, however some users would like to tweak theirs using Outlook's built in editor and are not currently able to.

    In my experience at least, that's a normal behaviour. The editor isn't fully WYSIWYG so if you do anything complicated in there it won't always give an accurate representation of what will eventually be output when you insert it into a message. I've seen
    the same thing with signatures copied from elsewhere, displaying fine in the email but not in the editor, so it's not restricted to imported .htm files.

  • Transparency issue when generating PDF from InDesign Server

    Hi there
    Has anyone experienced any issues with transparency appearing solid white when generating a PDF from the InDesign server? There is no issue when exporting from the InDesign application, only when using the Server.
    Any pointers / suggestions would be much appreciated
    Thanks
    Davey

    Davey, please send me an InDesign Server document that I could use to reproduce this problem. My e-mail address is [email protected] Thank you. --DougR

  • JTable text alignment issues when using JPanel as custom TableCellRenderer

    Hi there,
    I'm having some difficulty with text alignment/border issues when using a custom TableCellRenderer. I'm using a JPanel with GroupLayout (although I've also tried others like FlowLayout), and I can't seem to get label text within the JPanel to align properly with the other cells in the table. The text inside my 'panel' cell is shifted downward. If I use the code from the DefaultTableCellRenderer to set the border when the cell receives focus, the problem gets worse as the text shifts when the new border is applied to the panel upon cell selection. Here's an SSCCE to demonstrate:
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.GroupLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.border.Border;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import sun.swing.DefaultLookup;
    public class TableCellPanelTest extends JFrame {
      private class PanelRenderer extends JPanel implements TableCellRenderer {
        private JLabel label = new JLabel();
        public PanelRenderer() {
          GroupLayout layout = new GroupLayout(this);
          layout.setHorizontalGroup(layout.createParallelGroup().addComponent(label));
          layout.setVerticalGroup(layout.createParallelGroup().addComponent(label));
          setLayout(layout);
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
          if (isSelected) {
            setBackground(table.getSelectionBackground());
          } else {
            setBackground(table.getBackground());
          // Border section taken from DefaultTableCellRenderer
          if (hasFocus) {
            Border border = null;
            if (isSelected) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusSelectedCellHighlightBorder");
            if (border == null) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusCellHighlightBorder");
            setBorder(border);
            if (!isSelected && table.isCellEditable(row, column)) {
              Color col;
              col = DefaultLookup.getColor(this, ui, "Table.focusCellForeground");
              if (col != null) {
                super.setForeground(col);
              col = DefaultLookup.getColor(this, ui, "Table.focusCellBackground");
              if (col != null) {
                super.setBackground(col);
          } else {
            setBorder(null /*getNoFocusBorder()*/);
          // Set up our label
          label.setText(value.toString());
          label.setFont(table.getFont());
          return this;
      public TableCellPanelTest() {
        JTable table = new JTable(new Integer[][]{{1, 2, 3}, {4, 5, 6}}, new String[]{"A", "B", "C"});
        // set up a custom renderer on the first column
        TableColumn firstColumn = table.getColumnModel().getColumn(0);
        firstColumn.setCellRenderer(new PanelRenderer());
        getContentPane().add(table);
        pack();
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new TableCellPanelTest().setVisible(true);
    }There are basically two problems:
    1) When first run, the text in the custom renderer column is shifted downward slightly.
    2) Once a cell in the column is selected, it shifts down even farther.
    I'd really appreciate any help in figuring out what's up!
    Thanks!

    1) LayoutManagers need to take the border into account so the label is placed at (1,1) while labels just start at (0,0) of the cell rect. Also the layout manager tend not to shrink component below their minimum size. Setting the labels minimum size to (0,0) seems to get the same effect in your example. Doing the same for maximum size helps if you set the row height for the JTable larger. Easier might be to use BorderLayout which ignores min/max for center (and min/max height for west/east, etc).
    2) DefaultTableCellRenderer uses a 1px border if the UI no focus border is null, you don't.
    3) Include a setDefaultCloseOperation is a SSCCE please. I think I've got a hunderd test programs running now :P.

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Odd issue when using UDT (user defined type)

    Hi all,
    11g.
    I ran into an odd issue when using UDT, I have these 4 schemas: USER_1, USER_2, USER_A, USER_B.
    Both USER_1 and USER_2 have an UDT (actually a nested table):
    CREATE OR REPLACE TYPE TAB_NUMBERS AS TABLE OF NUMBER(10)USER_A has a synonym points to the type in USER_1:
    create or replace synonym TAB_NUMBERS for USER_1.TAB_NUMBERS;USER_B has a synonym points to the type in USER_2:
    create or replace synonym TAB_NUMBERS for USER_2.TAB_NUMBERS;Both USER_A and USER_B have a procedure which uses the synonym:
    CREATE OR REPLACE PROCEDURE proc_test (p1 in tab_numbers)
    IS
    BEGIN
      NULL;
    END;And in the C# code:
    OracleConnection conn = new OracleConnection("data source=mh;user id=USER_A;password=...");
    OracleCommand cmd = new OracleCommand();
    cmd.Connection = conn;
    cmd.CommandText = "proc_test";
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter op = new OracleParameter();
    op.ParameterName = "p1";
    op.Direction = ParameterDirection.Input;
    op.OracleDbType = OracleDbType.Object;
    op.UdtTypeName = "TAB_NUMBERS";
    Nested_Tab_Mapping_To_Object nt = new Nested_Tab_Mapping_To_Object();
    nt.container = new decimal[] { 1, 2 };
    op.Value = nt;
    ......This code works fine, but it raises an error when I change the connection string from USER_A to USER_B, the error says:
    OCI-22303: type ""."TAB_NUMBERS" not foundInterestingly, if I change op.UdtTypeName = "TAB_NUMBERS"; to op.UdtTypeName = "USER_2.TAB_NUMBERS", the error is gone, and everything works fine.
    Anyone has any clues?
    Thanks in advance.

    Erase and reformat the ext HD. Then, redo the SuperDuper! backup.

  • Bluetooth issues when using smartwatch on the z1s

    I'm having some Bluetooth issues when using my smartwatch. I usually use my z1s with my car radio via Bluetooth to listen to music and for making calls. Now that I got a sony smartwatch I always got problems with the calls. It looks like that the Bluetooth turns off during the call when I'm using the smartwatch. I already tried by deleting and pairing again the z1s, but nothing works. Not sure if maybe the z1s does not support the smartwatch and the care radio Bluetooth connection at the same time. However it works fine when playing music! The problem is just with the calls. This never happens before I got the smartwatch.

    I have the Tmobile Z1s and a SW2 and have the same issues with multiple devices:
    1) Bose Soundlink Mini
    2) Sony MBR-100
    3) My car's bluetooth
    4) Ford Sync
    5) Sony SBH20
    6) Motorola S305
    If the phone connects to the A2DB device, it will typically play fine for several minutes. Then, audio will drop out. If I do nothing, after several minutes my watch will vibrate to show it has disconnected. Sometimes audio then comes back, and sometimes it doesn't.
    Sometimes my phone will not connect to my car. Then, if I can get it to connect, it will only allow for phone audio, not media audio. 
    This issue has been on (2) Z1s's with the SW2. The first I returned due to touch screen issues, which the second one also has. All of the devices above worked perfectly fine with my Xperia Z, Galaxy S2, HTC One, etc. The Xperia Z and the SW2 never had any problems.
    Honestly, this phone has been incredibly frustrating. If the upcoming updates for either the SW2 or Z1S don't fix this issue, I'm going to return it and get something else.

  • Display issues when opening InDesign CC files

    I have had CC since it was released and I am having an issue. when i open a INDD file, indesign will open correctly, but the document will not display. I can see the scroll bars, and can move the mouse auround and the cursor will change like it's hovering over a frame. but not visual document. It also collapses all my panels.
    It lookes like this
    I am running Indesign CC, Win 7 pro 64bit
    Core i7-3770 3.4ghz
    16gb memory
    NVIDIA gforse GT 640
    500GB WD Velociraptor
    Any thoughts?

    Second report like this today...
    Try trashing your prefs. See Replace Your Preferences

  • Sleep issue when using external display

    I use my macbook(lid closed) with an external apple cinema 20" display. When I wish to put the computer to sleep, when I will not be using it for a while, I click on the sleep menu item either in the drop down finder menu or by clicking on sleep from the menu that appears when I touch the display button. I have had erratic reponse from doing this using both methods of putting the system to sleep. Sometimes the macbook goes into sleep mode and sometimes it turns the display and system back on after a short pause following the activation of the sleep button.

    Do you use a wireless mouse or keyboard?
    I had the exact same problem with both my mini and my old ibook G4. Try unplugging one peripheral at a time from your usb ports to pinpoint which (if any) is causing the problem. This can take a while if the problem is intermittant like you say!

  • I am stumped I do not understand why my roommates macbook pro when duel screened will display perfectly on my monitor while mine refuses to, but mine will display perfectly when using another monitor that is not mine. Please help me out.

    One day when using my duel display the second monitor decided it wouldn't display at full resolution in the middle of doing something i was confused. I use a mini display to hdmi then hdmi to the second monitor. I thought maybe the converter or cable died. I bought another another mini display to hdmi and tried another hdmi cord and the same issue. My roommate has macbook pro as well so i decided to see if it was the monitor, when i pluged the mini display converter into his and used the external monitor it displayed perfectly not below resolution. Doing this I knew it was not the monitor or the mini display to hdmi or the hdmi cable. I took it into the genuis bar assuming now that it was my grapics card or logic board. When the genuis went to duel screen it on a cinema display it displayed perfectly. So went home tried to duel screen it again and still not displaying at full resolution. That is where I am stuck, in summary:
    My screen used to display perfect resolution on a second monitor and suddenly did not.
    Tested two mini display to hdmi and hdmi cords both were fine.
    Tested to see if monitor was issue but displayed perfectly when i used roommates laptop.
    Went to genius bar and displayed perfectly on second monitor so it can display perfect resolution on apples monitors but will not do so anymore on my monitor, even though roommates macbook pro will display perfect resolution on my monitor.
    I am beyond confused.

    Apparently you have tried everything except - take the monitor in question to the Apple Store along with your computer.  If it works there, the mystery continues.

  • External display issues when waking display from sleep

    After waking my external display from sleep (the entire Macbook was not asleep, just the external display), the garbled colored dots kept appearing at the top and bottom of the screen, only then for the entire display to go black, then about 5-10 seconds later the images comes back, but with the garbled colored dots at the bottom. It will keep doing this over and over again.
    It's only happened once so far, but I seem to remember reading about some issues when waking from sleep with the new unibody Macbooks with regards to external displays. Is this a known issue with these Macbooks?

    There have been similar reports. However, not all external displays in combination with a MacBook will exhibit this problem. Thus, it seems either display specific or something that is caused by a cross between one display and a MacBook.
    I assume that you are using one of Appe's mini DisplayPort to DVI adapters to connect to the external display. In that case have you installed the latest firmware update for the adapter?

  • Display issues when disconnecting from an external display

    While I have found 3 bugs since my upgrade to 10.6 the biggest and most frequent issue is the MBP display when using and external monitor. When I connect a monitor all is well (mirroring mode). When I disconnect the MBP screen gets the major jitters and I can't stop it by doing anything in the Display Properties. The only way to resolve it to close the lid forcing the system into suspend mode. When I reopen all is well again. This is not an intermittent issue. Has anyone found this issue and is there a better work around?
    The only other issues have been Mail crashing the whole system and Gotomeeting crashing the whole system when attempting to take Keynote into full screen mode.

    I am have experienced both problems as well as if I have an external display connected to my MBP and move itunes video play back to the second screen then disconnect it from the MBP the video stays on the second display and will not gather back to the MBP display. The video is playing but off screen. Gather and detect screen do not work to get the video play back to the MBP screen.
    When I reconnect the external display there is the video. I know this does not answer the original question, but from looking around the net it seems to be a growing issue.
    Message was edited by: Black Spruce

  • Mac Pro + Airport Extreme = Mouse Cursor Chaos Display Issues When Dragging

    Graphic display issues (mouse lag and latency displayed on the screen when dragging an object (photo, window, application, document, etc.) from the top 50% of the screen to the bottom 50% of the screen. Mouse cursor starts to display serious lag and latency and loses ability to stay on the object being dragged anywhere below the 50% horizon line of any display.
    Mac Pro (any model 2007 to current 2009 production) with Airport Extreme installed.
    Symptoms:
    On any object the mouse cursor selects and then drags from anywhere in the upper portion (50%) of the screen display (no matter the display being used) to the bottom portion (50%) of the screen display, shows great lagging and latency as if the cursor is "hanging on for dear life" or as if the processor were running several intense applications and cursor was not responding.
    The mouse cursor fails to stay in concert with the object being dragged anywhere in the lower portion of the screen although is fine in the upper portion of the screen.
    Issue only presents itself when selecting and dragging an object from bottom to top or top to bottom of the display.
    I have deduced that the issue with this "polarity" (i.e. the 50% horizon level of the screen north and south) is due to some magnetic or waveform interference from the Airport Extreme card and most likely due to its position on the motherboard and/or next the the Intel processor. Also could be enhanced by the Bluetooth card which is also located next to this card.
    After checking various Mac Pros (at Apple stores, friends and received via Apple Online store) the common denominator is the Airport Extreme Card. When it is NOT present, no issues are present with display cursor lag; when it IS present, all the above apply.
    No one at Apple seems to realize this issue or cares about it. Ditto for Genius Bar Apple Employees; seems to be a mystery on par with the Bermuda Triangle (which ironically is also magnetically-polarity related.)
    Still waiting for a Apple Product Engineer to contact me and have 3 tickets open with Apple from 3 different Mac Pros on this. Problem first noticed May 2009 although first generation Mac Pro from 2007 also suffered same issues and just now putting the puzzle together on this relationship.
    Any others out there notice this as well? Check it out if you have a Mac Pro and Airport Extreme Card installed inside of it.

    I also have the same exact problem. I have a i5 iMac Mid 2011 with an upgrade to 10.10 Yosemite connected to an external display. I like you never had this issue with Mavericks. Zoom is so painfully slow now that I had to disable it. My iMac has 12 GB of RAM and even with no apps opened, zoom is killer slow.. makes me want to punch a wall-kinda slow.
    I think it's clear to say that something is up with 10.10.. some bug.
    Apple please fix us zoomers

  • External display issue when Macbook wakes up

    Hi there,
    I have an external display (Samsung 920nw) used as an extension of my desktop. When I go to sleep so does my Macbook... I close the lid and the computer goes to sleep mode within seconds (the white led on the front right slowly flashes confirming that the computer got to sleep).
    The problem starts in the morning when I wake up the Macbook. The white led is still and not flashing anymore and when I lift the lid only the external display works with a poor resolution. The macbook display remains off. To solve the problem I need to detect displays and rearrange everything again between the screens.
    I am not sure but I believe that sometime during the night the Macbook wakes up and he thinks that I am using the external display as the only display.
    I want to lift the lid and both displays to be working as they were before going to sleep mode. Is anyone facing the same problem and/or have any clue of what is happening?
    I have a bluetooth mouse and a usb hub with printer, pen drive, external hard drive attached to the macbook.
    Thanks for helping.

    Could be caused by a backup drive or some other application running in the background.  There's no way to be sure without looking at your crash logs.  I keep my computer on but I always close down my apps at night to protect them from power outages.
    Nancy O.

  • Smartform font spacing Issue when using SAP printer name

    Hi Friends,
    I am facing some spacing issues when printing a form using SAP printer name. If I use LOCL then the output comes perfectly but when I use the SAP printer name the space between characters are getting widened and so the alignment of each column goes wayward. I suspect it could be due to the device type but not sure which seeting controls this. There is a similar problem in the logo as well. When using LOCL the logo comes out good but when using the printer name the quality is not good and becomes pixelised. Have any of you faced similar issues? Can you provide some guidance or pointers for the solution.
    Device type of LOCL : ZSAPWIN
    Device type of SAP printer name :  ZHPLJ5
    CPI is defined in smartform as 10.
    Please let me know if you need more information.
    Thanks,
    Praveen

    Hi,
    This problem occurs because the printer driver for both the printers are different,
    I suggest you use Local printer only or configure any other printer with printer diver in SAP as SAPWIN.
    Regards,
    Bharat.

Maybe you are looking for