I know how to link a button to a start slide, but how do I specify an end slide?

At work, they've asked me to create an ipad app in keynote that acts like a web page. I learned keynote today, and certainly not all of it. They want four separate click-through image galleries, with buttons represented by text, that link to four sets of slides. They are under the impression that grouping each set of slides and then linking each title to a specific start slide (the first in each respective group) will accomplish this, but it's not quite working. I need to know if there's a way to also specify an end slide for each button/gallery, because they're starting at the correct slide but then going all the way through to the end of the slides I've uploaded. Is this even possible?
Thank you,
Lais

If you specify that the presentation only uses hyperlinks (doable with either KN 5.3 or 6.2), you can add navigation arrows or other shapes to each slide that contain hyperkinks to the next slide you want the user to see. So the navigation shape on last slide in each group would link back to the first slide. If you don't want to use arrows or anything else that partially covers the image, you can use shapes without fills for the hyperlinks. That way, tapping anywhere on the slide will activate the link.

Similar Messages

  • Flash menu in DW, how do I link the buttons?

    Hi there!
    I have a problem, i'm creating a site in dreamweaver with a
    lot of flash objects. For examlpe I'm making a flash menu, wich is
    the hole problem! I'm importing the flash file to the left frame in
    dreamweaver and i'm trying to link the buttons (on the menu) to ex.
    "home" or "about me", though it doesn't work! I can't link the
    buttons because they're in this flash object. I know i'm doing it
    wrong with trying to link the buttons on the flash object but I
    don't know what else to do. And the thing is that i don't wanna use
    the buttons already existing in DW, i've made my own ones. The
    buttons are moving so there is one more problem, they're coming in
    from the right side (in the left frame) and bounces once, and then
    they stop. And that's when I wan't them clickable. So how do I make
    the buttons linking to the pages??
    Would really appreciate an awnser!
    Thanks !

    Flash links are made in Flash, not DW.
    I trust these links are not important, as search engines
    can't see them
    "Sabyonei" <[email protected]> wrote in
    message
    news:f1ktus$ct9$[email protected]..
    > Hi there!
    > I have a problem, i'm creating a site in dreamweaver
    with a lot of flash
    > objects. For examlpe I'm making a flash menu, wich is
    the hole problem!
    > I'm
    > importing the flash file to the left frame in
    dreamweaver and i'm trying
    > to
    > link the buttons (on the menu) to ex. "home" or "about
    me", though it
    > doesn't
    > work! I can't link the buttons because they're in this
    flash object. I
    > know i'm
    > doing it wrong with trying to link the buttons on the
    flash object but I
    > don't
    > know what else to do. And the thing is that i don't
    wanna use the buttons
    > already existing in DW, i've made my own ones. The
    buttons are moving so
    > there
    > is one more problem, they're coming in from the right
    side (in the left
    > frame)
    > and bounces once, and then they stop. And that's when I
    wan't them
    > clickable.
    > So how do I make the buttons linking to the pages??
    > Would really appreciate an awnser!
    >
    > Thanks !
    >

  • I downloaded a movie to my Air, but it won't sync to my ipad2 and says it's not authorized.  It's not a rental.  Anyone else have this problem or know how to resolve?

    I downloaded a movie to my Air, but it won't sync to my ipad2 and says it's not authorized.  It's not a rental.  Anyone else have this problem or know how to resolve?

    I ended up having a one hour conversation with Apple Support which evolved to handing over control of my screen and then eventually having to use Terminal.  I wish I could remember the command but it's probably best I don't. 
    One thing we looked at right away was the account name used to dowload the movie.  Is it the same as the account name  you have saved on your iPad.  That's easy to check and would be great if that is all that's needed to correct.  Good luck.
    Here's also an email I got from Support that could solve your problem if it's not as difficult as my issue was.
    I would like to inform you that this issue can occur if iOS (your device's operating system) on your device needs to be updated. It can also happen if the computer you're trying to sync from has not been authorized to play purchases you are trying to sync.
    I suggest that you first see if updating iOS on your iPad resolves the issue. This article will walk you through the process:
    Backing up, updating, and restoring your iPhone, iPad, or iPod touch software
    http://support.apple.com/kb/HT1414
    If there are still purchases that won't sync to your device after you update its software, I suggest reauthorizing your computer. To do so, follow these steps:
    1) Open iTunes.
    2) From the Store pull-down menu at the top, choose Deauthorize Computer.
    3) Enter your account name and password, then click Deauthorize.
    4) Now from the Store pull-down menu at the top, choose Authorize Computer.
    5) Enter your account name and password, then click Authorize.
    Once your computer has been authorized, try syncing your device again. If the same issue happens, I suggest reviewing the following articles:
    Some songs in iTunes won't copy to iPod
    http://support.apple.com/kb/TS1420
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Syncing iPad, iPhone, or iPod touch with iTunes
    http://support.apple.com/kb/HT1386
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/HT1296
    You'll also find a wide variety of helpful iPad troubleshooting tips, tutorials, and service information on this page:
    http://www.apple.com/support/ipad

  • How can i make the end of a text higher than the rest in 3D?

    I'm designing a 3D text for the outlet store of www.badkamermarkt.nl/ and would like to know how I can make the end of the text higher than the rest in 3D.

    Hi,
    Can you attach a comp of what you're trying to accomplish, instead of a live link to a commercial home page?
    Are you wanting to make the country code of the url bigger like this?
    regards,
    steve

  • How to write to the end of a file

    i am tryign to write to the end of a file using bufferwriter and bufferreadear. I am trying to the read the file until i reach the end and then write in the end. I have some code but i dont know how to read until the end of the file.
    File file = new  File ("Product.txt");
              FileReader reader = new FileReader (file);
              BufferedReader readBuff = new BufferedReader (reader);
              FileWriter write = new FileWriter(file);
              BufferedWriter writeBuff = new BufferedWriter(write);
              String line = readBuff.readLine();     
    // i know i need to put a while loop somewhere around here

    I want to write to the end of the file, what do you mean when you say "then write() until you've written that many bytes, which will overwrite the bytes already in the file."
              File file = new  File ("Products.txt");
              FileReader reader = new FileReader (file);
              BufferedReader readBuff = new BufferedReader (reader);
              FileWriter write = new FileWriter(file);
              BufferedWriter writeBuff = new BufferedWriter(write);
              String line = readBuff.readLine();
              long fileSize = file.length();
              readBuff.close();
              writeBuff.close();
              } catch (IOException e){
                   System.out.println ("Error -- " + e.toString());
         }

  • Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Hi connally25,
    Below is a link to a video tutorial on how to add a Facebook Log button, please check if you have followed the same steps to add the video.
    http://tv.adobe.com/watch/learn-adobe-muse-cc/adding-a-facebook-like-button/
    If you have followed the steps correctly and the button still does not work; here is a link to a forum thread which might help solving the issue:
    Facebook Follow Widget not working
    Regards
    Sonam

  • Hi, I have Adobe Acrobat Professional.  I need to know how to create multi-links on 300 page docs

    I need to know how to create multi-links on a 300 page document, showing "return to main Menu".  Ideally placed on the bottom right of each page. I have adobe acrobat Professional. 

    Import a picture to be a button, place it, activate HYPERLINK tool, draw a rectangle around the whole button, in the window popping up select the link behaviour, submit with OK.
    Then copy & paste the button object to every page. I don't know whether pasting it on every of the 300 pages can be automated, but if not, it is still done quite fastly.

  • I deleted the HP Smart Web Printing (but kept the link) and now I don't know how to get it back.

    I had 23 Microsoft updates and 12 did not update. I am 73 and not very computer literate. I finally (accidentally) discovered that, at least part of the problem, was that I must have installed Explorer 9. It told me to update to a new driver/software. I was trying to do it step-by-step and that's when I deleted the Smart Web Printing. On the second step of trying to fix it, it would not update because it says it doesn't support 64 bit (which I have). It only supposed 32 bit. HELP. I can't figure out how to get my smart web printing back. Also, I don't know how to get my system back to a lower Explorer since I apparently have 9.
    This question was solved.
    View Solution.

    Hello BarbG,
    HP no longer offers the Smart Web Print software available for download since the change to Smart Print. Rather than trying to get around this maybe we can look at at least resolving the issues you are having.
    For one the Smart Print software can be found here
    HP Smart Web Printing Software Replaced by HP Smart Print
    Available on the link are step by step instructions on installation and setup of Smart Print, including videos on how to use Smart Print so you can become accustomed to using it.
    Now before we get into that what you will want to do is verify that you are truely running IE9 64 bit versus the 32 bit. HP Smart Print only supports 32 bit so we want to make sure we are using that.
    To check the version of IE you are running follow these steps.
    1. Launch Internet Explorer
    2. Click on Help
    3. Select About Internet Explorer
    4. If the version of Internet Explorer has 64 bit next to it then you are running the 64 bit version. If it doesn't say then you are running the 32 bit version and are good!
    If you are running the 64 bit version we next need to see if you already have the 32 bit version on your computer. 
    1.Click on Start
    2. Select All programs
    3. Look for Internet Explorer (64-bit)
    Just below that entry should be another entry called "Internet Explorer" This version of Internet Explorer should be the 32 bit version and you can verify this by repeating the before mentioned steps.
    Once you verify that you are running the 32 bit version of IE then you can proceed with installing the Smart Print software.
    Also note a few other additional places to check and run IE 32 bit are below:
    Go to start->all program->accessories, IE 32 bit version should be located here
    You can also find the IE 32 bit version in this path "C:\Program Files (x86)\Internet Explorer\iexplore.exe."
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Does anyone know how to avoid the Ok, upload, thumbnails links that appeares when you touche the ipad screen when viewing an interactive pdf?

    i'm trying to read several interactive pdf on my ipad, but when i touch the screen it ppeares a top bar with "ok" that if i touch it closes the pdf, an upload button, & the thumbnails of the pages on the righ side of the screen appears too. Does anybody know how to avoid it? Thank's

    Are you saying that all pages appear blank when you open the particular PDF document (AINF....pdf) in Adobe Reader for iOS?  It may be due to a bug in Adobe Reader for iOS.
    You mentioned "links"...There are three different actions that the desktop version of Adobe Reader supports for links.
    Go to a page view (within the same document)
    Open a web page
    Open a file
    Adobe Reader mobile products (for iOS, Android, Windows Phone) support the first two but does not support opening a PDF file or any other types of files.
    Additionally, hyperlinks are not visible in Adobe Reader mobile products.  (It used to show hyperlinks in light blue highlight.  But due to customer complaints, hyperlink highlighting has been disabled.)
    Please let us know if you can share your PDF document with us (Adobe).  We can take a look at it and diagnose the cause of the problem.  Thank you.

  • I've just downloaded the add-on - Quick Locale Switcher but don't know how to access it because there doesn't appear to be a button for it on the Firefox toolbar?

    I've just downloaded the add-on - Quick Locale Switcher but don't know how to access it because there doesn't appear to be a button for it on the Firefox toolbar?

    With any extension, look at the add-on page for that item in Mozilla Add-ons: https://addons.mozilla.org/en-US/firefox/<br />
    *Answers can usually be found there: https://addons.mozilla.org/en-US/firefox/addon/1333/<br />
    *Also the developer's home page for the extension (the link is on the above page): http://www.captaincaveman.nl/firefox-extensions-quick-locale-switcher.aspx<br />
    *Also see if there is a forum on the developer's home page (there is for this one): http://forum.captaincaveman.nl/default.aspx?g=topics&f=12

  • Did you know how to link the text in two or more text boxes?

    Did anyone know how to link the text in two or more text boxes in Pages 5.0? Thanks for your answer.
    Qualcuno sa come collegare il testo in due o più caselle di testo nella versione 5.0 di Pages. Grazie per le vostre risposte.

    It's just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • I'm trying to recover my security questions, but my alternate email address on the link does not match the one I have put in my Apple ID, on the link it is has an old one that no longer exists. Has anyone else been through this or knows how to help m

    I've been trying to remember my security questions for ages, and I can't seem to remember them. On my Apple ID I have changed my alternate email address because the previous one was deleted, but when I go on the "Password and Security" page on my Apple ID and there is a link saying "Forgot your answers? Send reset security info email to ************@*******.com" but it is giving me my old email that does not match my current one on my Apple ID and no longer exists. I have been trying for very long to recover my security questions' answers, but Apple is not coping with me.
    Has anyone been through this or knows how to help me?
    Thank you.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122986)

  • OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF. then 2.  need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that

    OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF; then 2. I need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that??
    I had been saving as a PDF and then reducing the size of the PDF by printing it as a PDF with a degree of image compression. I write manuals with a LOT of screen captures and line art that needs to be clear. So it is a balancing act between image clarity and PDF size. The PDFs on the web need to be smaller - sure you can undertsand.
    Anyway, when I print the PDF again, I lose both my destinations and bookmarks.
    Anyone know of any way to avoid that?

    Control the images by creating a custom PDF Job Options and then selecting it in the PDF Job Options drop-down of the PDF setup dialog box (File > Save as PDF...)
    Create the custom PDF Job Options file with Distiller. If you do not have Distiller, open the Printing Preferences of the Adobe PDF printer. Start with the Smallest File Size Job Options settings and Edit.

  • How can i Know the email linked to icloud

    Please can anyone help me how to know teh email linked to my phone ??
    it shows me h********@hotmail.com i tried to logged in with my account that belong to h********@hotmail.com and it says inocrrect password or email i tried to reset my id but no reset mail was sent to my email ..
    so i tried to creat a new with the existing email addreess and it works and verified and finally i tried to activate it with h********@hotmail.com with the new passs and it says account cannot be activate with h********@hotmail.com it is linked to another account ..
    so please how can i know the linked email to my phone
    Thank you

    Welcome to the Apple community jorjh.
    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple ID.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • How do I link one button to two slices?

    Hello,
    I need some help please. How do I link one button to two
    slices? or combine two slices to make one slice, or make a true
    polygon shape out of the slices, it will make the polygon shape but
    it leaves the the red guide lines and I cant work under that
    slice... if you understand. Will someone please help. Thank you so
    much.

    heathrowe wrote:
    > Did you Hide Slices?
    >
    > Select the Pointer Tool and click your Object? It should
    get selected.
    >
    > What happens when you mouse over the 'star' object? Do
    you get the 'object
    > selection' bounding area appear? Bounding area should
    appear red when you mouse
    > over it? Yes/No!
    >
    > Also, go to your Layer Panel and make sure that your
    object/Layer is not
    > 'locked'. Look for little 'padlock' icons next to the
    Layers. If you see it,
    > click it, to toggle it to 'off'.
    >
    > h
    >
    Also make sure you are not in PREVIEW mode in the document
    window.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    Adobe Community Expert
    http://tinyurl.com/2a7dyp
    See my work on Flickr
    http://www.flickr.com/photos/jim_babbage/

Maybe you are looking for

  • Specify Office 2013 kms host trough group policy settings

    Hello. Can someone please help me get the right registry key for Office 2013. I want to specify kms host for my clients in domain - trough group policy. Dont want to use dns or config.xml to specify the host. For Windows i use this key, activation wo

  • Pur. req. not created for Dep.req. of Sub. Contracated Material after MRP

    Hi Guys, Pl. observe the below scenario, Our client scenario is Make-To-Order      u2022     Sales order is created for FG material in plant "0001" u2022     Material BOM is created for FG material in Plant "0001" with 10 raw materials u2022     Rout

  • Unable to install Lightroom on Windows 7 Pro 4GB

    hello I have a Creative Cloud Subscription, I am using a Dell Vostro 3360 laptop. Windows 7 Pro SP1, 64-bit, up-to-date. 4 GB RAM, laptop screen is 1366x768, plus ane external larger display. Graphics card is "Intel HD Graphics 4000". I read the Adob

  • In our application we have CV Builder and after submit we want to show in  pdf format.

    In our application we have CV Builder and after submit we want to show in  pdf format. this is html page and we want to create pdf after click on Submit. Please provide Solution as soon as possible.

  • Captivate 6 license key for Adobe 5.5?

    We currently have two work PC's with Captivate licenses, one has 5.5 and the other has 6. This was an oversight on purchasing's end. We would like to have both computers on the same version. Is it possible for me to use the license key for Captivate