Hyperlink not working in presentation mode when using alternate display

Made hyperlinks to jump from slide x to slide y
That worked fine when testing in presentation mode
When the same file is played using a beamer as alternate display the hyperlinks are not recognised: clicking will start the next build of the presentation

Is there anybody who successfully used a hyperlink to jump from slide A to slide Y? (and when using the beamer as an alternate display, using the macbook pro screen for the presentation notes)
If so, I can try to find out what I do wrong, otherwise it might be a bug in Keynote'08
thanks for your attention in this matter!!

Similar Messages

  • [svn] 1720: Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints .

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

  • Why do hyperlinks not work in a pdf when it is signed?

    Why do hyperlinks not work in a pdf when it is signed?

    Adobe reader there any payment to be no problems or allow sharing through hyperlinks.
    Dentistas en lima

  • AutoSize not working properly in TextField when using non-zero line spacing

    When using non-zero line spacing, the autoSize property is not functioning as expected, causing text fields to scroll that shouldn't.  Also, when using device fonts, the sizes of the TextFields are wrong in the Flash IDE.
    I have a TextField whose height is supposed to be dynamic, depending the width of the TextField.  wordWrap is true, the text is left aligned, and the autoSize value is flash.text.TextFieldAutoSize.LEFT.
    When the TextField's width is adjusted, the height increases or decreases as expected, but when I scroll the mouse wheel over the TextField, it allows a single line to scroll out of view.  This should not be happening.  The autoSize property should ensure the TextField is large enough to neither require nor allow scrolling.
    Has anyone else encountered this issue or know how to fix it?
    Update: Been a problem since at least 2006! > http://blog.nthsense.net/?p=46
    http://www.kirupa.com/forum/showthread.php?288955-Disabling-textfield-scrolling   Bug is caused by using a line height ("line spacing" in Flash) larger than zero, for example 1.0pt.  It looks like when I reduce the line spacing of the text field to zero, the issue goes away.  There doesn't seem to be anything wrong with how autoSize is calculating the required height of the text (i.e. it is exactly textHeight + 4 pixel gutter, and drawing the rectangle (2,2,textWidth,textHeight) aligns visually with the text), so it must have to do with how the TextField is deciding whether it needs to scroll or not, and that separate calculation is being thrown off by the non-zero line spacing.  The additional non-zero spacing at the end of the last line could be making the TextField think it needs to scroll, even though it's hight is sufficient at "textHeight + 4".  Apparently the problem manifests when using a non-zero leading value as well.
    In fact, it has to be related to the leading value exactly, since the following code stops the textfield from scrolling.
    //body is TextField
    var tlm:TextLineMetrics = body.getLineMetrics(body.numLines - 1);
    trace(tlm.leading); //traces "1" here.  traces zero when line spacing is zero, and traces larger values with larger line spacing values
    body.autoSize = flash.text.TextFieldAutoSize.NONE; //turn off autosize so the height can be set manually
    body.height += tlm.leading; //increase height of textfield by leading value of last line to cause scrolling to be turned off.
    Honestly, this is pretty unacceptable bug.  First of all, scrolling should not be sensitive to trailing line spacing, because autoSize and textHeight do not include it. It need to be consistent, and I think textHeight and autoSize setting height = textHeight + 4 is correct.  Vertical scrolling should use textHeight as it's guage for whether scrolling is necessary, but instead, it's obviously involving the leading values of the last line.  At the very least, vertical scrolling should simply be disabled when autoSize is turned on and wordWrap is true, because the TextField should be big enough to fit all the text.  The workaround of manually adjusting the height is also no good, since turning autoSize back on will immediately change the size back and trigger scrolling again.  I also shouldn't have to set line spacing to zero just to use the autoSize feature, since the scrolling calculations are wrong in this way.

    No, lol.  Luckly, I replace most of my TextFields on the display list with my subclass TextFieldEx.  I just call a clone method that accepts a TextField and returns a TextFieldEx with identical properties.
    I corrected the problem via modifying the subclass to behave differently when autoSize is not NONE and wordWrap is true.  Under those conditions, the maxScrollV and scrollV property values are fixed at 1, and the class listens for its own SCROLL event and sets scrollV to 1 when it occurs.  That allows me to leave everything else alone, including text selection, and use whatever line spacing I want.
    The modification seems to work fine so far.
    For anyone interested in doing something similar, here is a clone method that will copy a TextField.
    public static function clone( t:TextField ):TextFieldEx
                                  var te:TextFieldEx = create( "", t.width, t.type, t.multiline, t.wordWrap, t.selectable, t.embedFonts, t.defaultTextFormat );
                                  te.alpha = t.alpha;
                                  te.alwaysShowSelection = t.alwaysShowSelection;
                                  te.antiAliasType = t.antiAliasType;
                                  te.autoSize = t.autoSize;
                                  te.background = t.background;
                                  te.backgroundColor = t.backgroundColor;
                                  te.blendMode = t.blendMode;
                                  //te.blendShader = t.blendShader;
                                  te.border = t.border;
                                  te.borderColor = t.borderColor;
                                  te.cacheAsBitmap = t.cacheAsBitmap;
                                  te.condenseWhite = t.condenseWhite;
                                  te.displayAsPassword = t.displayAsPassword;
                                  //te.embedFonts = t.embedFonts;
                                  te.filters = t.filters;
                                  te.gridFitType = t.gridFitType;
                                  te.height = t.height;
                                  te.opaqueBackground = t.opaqueBackground;
                                  te.restrict = t.restrict;
                                  //te.selectable = t.selectable;
                                  te.sharpness = t.sharpness;
                                  te.thickness = t.thickness;
                                  te.transform = t.transform;
                                  //te.type = t.type;
                                  te.useRichTextClipboard = t.useRichTextClipboard;
                                  //te.wordWrap = t.wordWrap;
                                  //Assign text last
                                  te.htmlText = t.htmlText;
                                  return te;
    //And the create method it uses
    public static function create( text:String = "", width:Number = NaN, type:String = null, multiline:Boolean = false, wordWrap:Boolean = false, selectable:Boolean = true, embedFonts:Boolean = false, font_or_textformat:*=null, size:Object=null, color:Object=null, bold:Object=null, italic:Object=null, underline:Object=null, url:String=null, target:String=null, align:String=null, leftMargin:Object=null, rightMargin:Object=null, indent:Object=null, leading:Object=null ):TextFieldEx
                                  var tf:TextFieldEx = new TextFieldEx();
                                  tf.width = isNaN(width) ? 100 : width;
                                  tf.defaultTextFormat = (font_or_textformat is TextFormat) ? (font_or_textformat as TextFormat) : new TextFormat( font_or_textformat as String, size, color, bold, italic, underline, url, target, align, leftMargin, rightMargin, indent, leading );
                                  tf.embedFonts = embedFonts;
                                  tf.multiline = multiline;
                                  tf.wordWrap = wordWrap;
                                  tf.selectable = selectable;
                                  tf.type = type;
                                  tf.text = text; //setting text last ensures the text line metrics returns correct values
                                  //Initialize the TextField's size to fit the text.
                                  if (!multiline)
                                            //When in single-line mode and no specific width is given,
                                            //expand width to entire line.
                                            if (isNaN(width))
                                                      tf.width = tf.textWidth + 4; //match width of text
                                  //Height is always automatically adjusted to fit the text by default.
                                  //It's better than the arbitrary 100px default height.
                                  var minimum_height = tf.getLineMetrics( 0 ).height;
                                  var h:Number = tf.textHeight;
                                  tf.height = (h < minimum_height) ? (minimum_height + 4) : (h + 4); //match height of text, ensuring height is at least enough to display one line, even if there is no text
                                  return tf;

  • Bug? Error when using Alternate Display for a preso with Build transitions.

    I was working on a preso and Alternate Display worked fine for a while when I'd play the presentation. Then I added some Build transitions and when I tried to play the presentation, I started getting this error:
    *Keynote cannot play your slideshow because an error occurred.*
    I restarted Keynote and created a new presentation. Alternate Display worked fine when I just had a couple of plain test slides. Then I added a Build to a set of bullet points and started getting the error again.
    Is this a known bug? Any way to fix it? Is it caused by something else?
    System Version: Mac OS X 10.6.4 (10F569)
    Chipset Model: NVIDIA GeForce GT 330M
    Model Name: MacBook Pro
    Total Number Of Cores: 2
    L2 Cache (per core): 256 KB
    L3 Cache: 3 MB
    Memory: 4 GB

    Certainly not a known KN bug, but might be an expression of the NVIDIA problem referred to here: <http://www.macrumors.com/2010/09/29/nvidia-class-action-settlement-for-macbook -pro-owners/>. Given your expertise and your hardware, that'd be my first guess. Barring that, you have to line up the usual suspects: corrupt pref file, corrupted app, etc. Have you been having any other problems/strange behavior either with KN, with other apps, or with your Mac generally? What, if any, software maintenance/repair have you tried/do you do routinely?

  • Hyperlink not working in Presenter 7.0.7 in pptx file

    I have an external hyperlink in the form of http://www.server.gov in the last slide of the presentation.  The link is not selectable in the published presentation.  I'm using office 2010 32 bit, windows 7, presenter 7.0.7 build 7746.  The published presentation is on the web server and I'm accessing the presentation with IE.  I've tried deleting the link and reinserting it.  Any suggestions on what to try next?

    Hi,
    I tried on same configuration for both PPT nad PPTX but I am not able to repro the issue.
    Please verify; if we play the Presenter published file on local system then hyperlinks are accessible?
    If answer for above is yes then I can suggest you  to check "Enable window popup" is unchecked.
    Regards,
    Shubhi

  • Superdrive not working on MacBook Pro when using Parallels in Leopard

    Just wanted to mention this. I don't know if it's been reported before but I just recently discovered this when attempting to use my drive to read some DVDs. I installed Leopard a couple of weeks ago and haven't used the drive since, so yesterday when I couldn't read any discs I got worried that the drive might be malfunctioning. By accident I closed Parallells in the dock and a while later when giving the drive a last try I was surprised to see that it was fully working again
    Just a tip so you don't unnecessarily go and turn in your MacBook (and have to wait like 3-4 weeks before getting it back...).
    There are certainly a lot of bugs in Leopard...

    When you configured your Parallels host OS you told it to grab the CD drive. Once it has done that it is no longer available to OS X. Go to the lower right corner of the Parallels window and find the CD drive icon. You can release the drive back to OS X there.

  • New macbook pro running mountain lion does not work in clamshell mode when attached to a thunderbird display.

    I have a new macbook pro retina running mountain lion. I want to use it with a thunderbolt display. When I close the lid on the macbook pro, everything goes dark.

    Plug in the power to the laptop. Then it works.

  • Anchor tags are not working on internet explorer when using touch devices

    Hi,
    I have a simple anchor tag like <a href=http://www.google.com></a>
    Using a mouse there is no problem but when I use a touch device (windows 8.1/windows Phone 8.1), all that will happen when people touch it is that the link will be highlighted.
    I don't want to highlight it, I just want the link to open.
    Double clicking the link will zoom in the page. It takes several attempts tapping the link to actually open it... this is VERY frustrating.
    How can I remove this highlighting non-sense?
    I found an article that seems to indicate this was done on purpose:
    http://blogs.msdn.com/b/ie/archive/2013/07/31/ie11-touch-browsing-for-today-s-web-and-beyond.aspx
    It's a total failure if you ask me and it is very frustrating to use my site on a touch device.
    Anyone has any idea on how to make links behave normally?
    Best Regards,
    Peter

    seems that it is something in SharePoint that is causing this behavior
    So you would probably be better off posting in a Sharepoint forum.  They would be more familiar with all the products involved.  This is an example where newsgroup cross-posting would be useful but it does not exist in forums.
    Otherwise, sounds like you are going to have to find the implementation involved and then devise a workaround for it.  Is there a publicly accessible example of the coding used for what you are seeing?  You could use the Developer Tools (or View
    Source) to try to look at it yourself.
    For a guess it may involve Active Scripting.  If the link can be used even if Active Scripting is disabled you could achieve that result simply by changing the security level or zone that the site is regarded with.
    BTW with your example link above I have the opposite problem.  I can't touch it to try to select it without launching it.  Here's a workaround for that:  select a word before the link, use the selection's wheels to extend it to include
    the link, then reduce it to include only the link, then, I can use press and old on the selection without launching the link.  (In fact since I always leave press and hold disabled I used my pen with its right-click barrel button to see the selection's
    menu though if I use my pen's barrel button, I don't need to make the selection to see just a reduced menu which would be sufficient to use the link.)  In any case, I imagine that just as I can do a press and hold on the selected text of
    the link without launching it you may just as easily be able to do a press and hold to see the selection's menu to allow you to launch its link.  
    HTH
    Robert Aldwinckle

  • On a Mac v10.6.6 Firefox v3.6.13 Right click on Google Map does not bring up the drop down box, with the first item being directions from here, the right click does work on Google map when using Safari

    On a Mac v10.6.6 Firefox v3.6.13 Right click on Google Map does not bring up the drop down box, with the first item being "directions from here", the right click does work on Google map when using Safari

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • My youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome

    my youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome. At times it also say QuickTime Player can't open "video.3gp". and
    The file may be damaged or may not be a movie file that is compatible with QuickTime Player. when i try to open a video on youtube on safari

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • I can't seem to use the 'Check seats' link on Delta when I use Firefox but Safari works fine. I get the message 'not available at this time' when using Firefox but when I go to Safari it works fine.

    I can't seem to use the 'Check seats' link on the Delta Airlines site when I use Firefox but Safari works fine. I get the message 'not available at this time' when using Firefox but when I go to Safari it works fine. I love Firefox but this sucks!

    That issue can be caused by corrupted cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    *http://kb.mozillazine.org/Cookies

  • The microphone of my iphone is not working on call but when i use viber it is working

    The microphone of my iphone is not working on calls but when i use viber it is working

    Hello there, qasmicomputers.
    The following Knowledge Base article provides some great troubleshooting steps for your issue:
    iPhone: Microphone issues
    http://support.apple.com/kb/ts5183
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • HT1202 The manual mode to transfer music to my iTune from my iPhone does not work as described. When I click on Manually manage... it displays the warning message that all music on my iPhone will be erased and replaced by iTune music.

    The manual mode to transfer music to my iTune from my iPhone does not work as described. When I click on Manually manage... it displays the warning message that all music on my iPhone will be erased and replaced by iTune music.
    How can I transfer my music to a second computer iTune?
    Thanks,

    See this user tip
    Syncing iPhone to a "New" Computer or replacing a "crashed" Hard Drive

  • IPhoto 6 Unable to Zoom in Full Screen Mode when using projector

    When in full screen mode in iPhoto 6 I am able to zoom quite nicely but when I attach a projector I lose the slide for zooming. How do I zoom in full screen mode when using a projector?
    Mac Book   Mac OS X (10.4.9)  

    ParkerT
    Given that the zoom works normally, this is not an iPhoto issue. The problem lies in the interaction between your MacBook and the Projector. You might have more luck posting on the MacBook forum
    Regards
    TD

Maybe you are looking for

  • How do i move my itunes library from my pc to the icloud?

    i have 3900 songs stored in my itunes library on my laptop.  I recently got an i phone 4S and there isn't enough storage on it to move my songs to the phone.  I purchased 20gb of storage in the iCloud but can't find any instructions to move my librar

  • How to addRecord in Web Dynpro to Model node (Entity Service ref)

    Hi, 1) I create Entity Service in CAF and try to write web dynpro Table UI for it. 2) is it possible with using Model Node? or I MUST use Value Node - Table must have possibilities for Add, Edit and Delete records. Now I can edit, and delete records,

  • Problem in input screen while executing the query

    Hi, I am trying to execute a query.In the variable input screen i have to provide a list of document numbers for a filed. If i click the 'Select from list' symbol, it is taking very long time to process and not responding for  2 to 3 hours. But if i

  • Can only undo 1 step!!!?!

    Pretty self-explanatory. I have InDesign CC on my MacBook Pro and when I undo, it only undoes 1 step. After that there is no undo option, so I cannot undo anything else.

  • Explaination of Component palette in BPEL

    Hi , i am new to BPEL and have been asked to work on BPEL without any prior training :(. When i open Jdeveloper i find a component palette which has foll options 1. Code Snippets 2. Preferred Components 3. Proces activities 4. Services 5. XML Can som