Questions: Hyperlink and Rollover

Dear all,
I use InDesign CS6 and i'm going to create a Interactive PDF file.
I have two questions:
1) I want to create some create buttons in all the pages of my document. I've created 3 small object on the Master page (one button for the "previous page one button for the "home" and one for the "next page")
Now, if I try to exoport the document in an Interactive PDF i have an error massage that says "got to page" is not supportated" The only button that works is the button with the hyperlink to the home.
Could someone of you explain me why??
2) I would like to realyze a Rollover from a photo to a text. The idea ist that wehn I go with the mouse to the photo i can see a taxt. How can i do that?
Thanks a lot!!
LordD.

Go to Page only works with SWF export or Adobe Digital Publishing. You need to make a Hyperlink destination of the page you want to go to and use the Go to Destination action.

Similar Messages

  • Links and rollover question - not what you think

    A little glitch in iWeb: I have a web page that is all white with black text. When I create a link with one of the words it turns white, but by page is white and the the linked word appears to be gone, only reapears when the mouse pointer hovers over it. Is there a way to change the colors of a link.
    Magma

    I have an article on my site outlining modifications you can make to the CSS file that iWeb generates, so that you can have whatever colours you want (Articles > Hyperlinks and CSS in iWeb)
    The other option is to choose a different template, or have a different background of course!
    Michael
    iMac Intel Core Duo 2GHz www.rowan-cottage.co.uk
    As there is advertising on my site, I am required under Apple Discussions Terms of Use to state that I may receive some form of compensation, financial or otherwise, from my recommendation or link

  • How To Change Hyperlinks And Nav Menu Colors

    I continue to see people stating that it's impossible to change hyperlink colors and navigation menu colors until after you publish your site. This is not true. It's quite easy to update your templates with the colors YOU want and when you update the template, you never have to mess with any post-processing. You make a new page? Your colors are already there.
    I've gone over this before in this thread:
    http://discussions.apple.com/thread.jspa?messageID=3288533&#3288533
    But I'll go over the quick and dirty version here as well. Those who want more detail can post a question and I'll elaborate.
    First, do you know how to get into iWeb's inner folders? You right click or control click on your iWeb icon and select Show Package Contents from the pop-up menu.
    Step 2
    Once you've done that, you'll see a new Finder window that shows a folder called Contents. Open that and then open the next folder Resources. Within Resources there's a folder named Shared. Open the Shared folder.
    You're now looking at your collection of iWeb template files. You'll notice that each template has seven individual page files - each file defines the layout and styles for the page for which its named. This is actually one of the two places where you'll find the data/images that make up your iWeb pages. This location only contains the images. Now I'll show you were to find the data file.
    So you're currently here:
    /Applications/iWeb/Contents/Resources/Shared/
    You want to go here:
    /Applications/iWeb/Contents/Resources/English.lproj
    Now if you speak another language and your Mac's system language is set to the language you speak, substitue English with that language. If your system is set to English regardless of the language you speak, and you use the English templates, then stick with the English folder.
    When you're in the English.lproj folder, you will see seven sub-folders and one file named TemplatesInfo.plist. TemplatesInfo.plist is the file that registers the templates and tells iWeb what you've got in your collection. But we don't care about that file for now. We're after the template data files.
    The seven sub-folders are aptly named for each of the seven page-types as you can see. Open the About Me folder.
    Now you will see an "about me.webtemplate" file for every template you have in your collection. Good job. You've learned something new. Move on to Step 3.
    Step 3
    If you haven't decided yet, now's the time to decide which template you'd like to update. If you're just along for the ride to learn something new, no worries. We won't do anything you can't undo.
    Pick a template file now. Perhaps you chose the White template, or:
    White About Me.webtemplate
    Right click or control click on this file and select Show Package Contents from the pop-up menu. This will launch a new Finder window that displays the contents of the White About Me.webtemplate file.
    You will likely see a handful of different files, but the file you want is the one named Index.xml.gz.
    Index.xml.gz is the brain behind the template. Within this file are all the settings for the page you chose and it's really not hard to find what you want and change it. So let's take a peek.
    Step 4
    Double-click the file Index.xml.gz. This will reveal a new file named Index.xml. You might have to scroll down in your Finder window to see it. Rename Index.xml.gz to Index.xml.gz.backup in case you screw things up, you have your original.
    Now, open Index.xml with TextEdit. Do not open the file with a code editor unless you have already formatted the file.
    When the file opens, you'll notice it's one gigantic jumbled mess of stuff. No worries, we'll straighten that out. All you need to do is a find/replace.
    Find all instances of: ><
    And replace with:
    <
    The line break is important so maybe just copy the lines right out of this post. When you replace all of those, the file will be far more easy to view.
    Assuming you've completed that step. You're basically ready to make your change and test it out! Not hard ey?
    So let's say you want to change your hyperlink color from grey to blue. Search for this string:
    BLDefaultHyperlinkCharacterStyleIdentifier0
    When you find that string, you will see a few lines below it, two lines that look similar to this:
    <sf:fontColor>
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r=".8" sfa:g="1" sfa:b="0.4" sfa:a="1"/>
    This is how the template specifies color. It's RGB100. Your Mac came with a program called Art Director's Took Kit and that application can tell you the RGB100 values for any color you want. Tinker with that and you'll have a lot of fun with this.
    So I picked out a nice royal blue for you. The RGB100 values for it are:
    R:0 G:25 B:100
    What you need to do is update the color line to match those values:
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g=".25" sfa:b="1" sfa:a="1"/>
    Notice that you specify these in terms of a percentage, where 25 became .25 and 100 became 1.
    Step 5
    Save your file. It's time to see your work in action. Open iWeb if it isn't open already and create a new page using the template you've just altered. If you altered the White About Me page, then select that and create the new page.
    It there are hyperlinks already on this page, you should already see that they reflect your new color. If there aren't any hyperlinks, then type some text and create one. You should see your new link color right away!
    Now if you don't see the new color, either you picked the wrong page or you neglected to rename the Index.xml.gz file a few steps back. If you did not rename that file, then it's still in control of your template. Rename it now and try again.
    If you don't like that color, simply swap back to the TextEdit page and change it until you like it - switching back and forth between the file and iWeb to view your changes. Once you're happy, make note of the color you chose and make the change for the remaining six pages in the tempalte you selected. Just be sure to follow the steps for each page you edit. If you fail to see your change, again, check to see that you renamed Index.xml.gz.
    Side Notes
    For the more technical, rather than editing an existing template, you might want to duplicate and rename a template. This essentially creates a brand new one. If you're pretty good within Finder then go for it, just be sure that you duplicate the files in both locations:
    /Applications/iWeb/Contents/Resources/Shared/
    /Applications/iWeb/Contents/Resources/English.lproj/...
    Choose a unique name for the duplicated template and change every single file so that the new name replaces the old one. You would have to register this new template in the TemplatesInfo.plist file as well, but I'm not going to get into that here.
    The thread I referenced at the top has all kinds of search terms to find the other hyperlink styles (rollover and visited) and all the navigation menu styles plus a bunch of other fun stuff.
    Now, it seems long, but that's because I wrote it well. The shortest version of this I've ever written was two sentences, but that was for a UNIX geek and he got it. It's just as easy for you, but I write it out so that anyone can do this, because anyone can. It's just not hard.
    If you have questions about any of the steps, go ahead and ask.

    Good. Okay here's how to apply a background color to your nav bar buttons. For example, my Aerolite template sets the selected page to a black background color. The rollover effect uses a gradient fill. I'll describe both of those here.
    First, here are the navigation menu search terms:
    navbaritem-style-normal-default
    navbaritem-style-rollover-default
    navbaritem-style-selected-default
    navbar-pargraph
    The first three set the button effects and text colors. The last one there sets the font, font size and other paragraph styles.
    To change the selected page button background color, or gradient or image, first search for it using the search term above. Start from the top of the file because there are two instances of those terms, one where you can set the values, the other is only reference to the first and does not allow you to change settings.
    When you find the search term, you might want to insert an empty line above it to help separate it from the rest of the code. You can also insert an empty line below the section. The end of this style ends with:
    </sf:navbar-item-style>
    Be careful not to mix that up with </sf:navbaritem-character-style>
    Now, within this section, you'll find all kinds of settings... stroke, fill, character styles, etc. Notice you can change font color in there. But for this demo, you want to find the section that looks like this:
    <sf:fill>
    <sf:null/>
    </sf:fill>
    I'm assuming you're editing an Apple template that does not already have a fill effect. If it does have one, then your example might not look exactly like that.
    To apply a color fill, change those three lines to these lines:
    <sf:fill>
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g="0" sfa:b="0" sfa:a="1"/>
    </sf:fill>
    You can see that we've inserted the line that specifies color - something you should be familiar with by now. Here you can specify the color that will become the background of your nav bar button. This example specifies black. Easy no?
    If you would prefer a gradient fill, then replace those three lines with this:
    <sf:fill>
    <sf:angle-gradient sfa:ID="SFRAngleGradient-1111" sf:opacity="1" sf:type="linear" sf:angle="0">
    <sf:stops sfa:ID="NSMutableArray-1111">
    <sf:gradient-stop sfa:ID="SFRGradientStop-1111" sf:fraction="0">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0.40" sfa:g="0.40" sfa:b="0.30" sfa:a="1"/>
    </sf:gradient-stop>
    <sf:gradient-stop sfa:ID="SFRGradientStop-2222" sf:fraction="1">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0.64" sfa:g="0.66" sfa:b="0.54" sfa:a="1"/>
    </sf:gradient-stop>
    </sf:stops>
    </sf:angle-gradient>
    </sf:fill>
    Now, don't panic Here's what this is. The first line allows you to specify the angle of your gradient. Play with the numbers from 0 to 359 until you have what makes sense for your design.
    Then, you will see two familiar lines again - the lines that allow you to specify color! The first line is the first color of your gradient and the second color is the second color of your gradient. That's all there is to it!
    SECRET: It might be possible to add additional colors, not just two. Do you see the part sf:fraction="0" and sf:fraction="1"? These are gradient stops. I'm willing to bet that if you inserted a thrid gradient stop with a fraction setting of .5, you'd have a three-color gradient!
    <sf:gradient-stop sfa:ID="SFRGradientStop-3333" sf:fraction=".5">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g="0.25" sfa:b="4" sfa:a="1"/>
    </sf:gradient-stop>
    I have never tried this - it just occurred to me as I was looking at this code. Big prize for the first person to prove the theory
    NOTE: You will notice that the number 1111 and 2222 are within this code. iWeb XML relies on identification tags here and there. It's nothing you really have to care about except if you insert gradient fills in more than one area. Those numbers need to be unique so if you paste that code in for your selected page button and then paste it again for your rollover buttons, you'll need to update the numbers for the second button. Any numbers are fine. Use 3333 and 4444 for the second set, 5555 and 6666 for the thrid and so on. I often just type 4345781476 - doesn't matter.
    Next lesson will be images.

  • How to activate Image, Pdf, Hyperlink and Scale Prices in SRM-MDM

    Hi Experts,
    I have requirement to activate the following features:
    1. Image
    2. PDF
    3. Hyperlink
    4. Scale Prices
    These should be activated and should be available in the current business' internal catalogs so that users could be able to easily identify the item they want to create.
    Does anyone know the steps on how to proceed on these?
    I have read and researched about this and I found out that objects should be imported in Data Manager and the link between items should be mapped in Import Manager.
    I tried this first in Image, I was able to successfully import image. I tried adding the link first in existing item in data manager by right click on the Image field->Add/Link New... -> I was brought to the screen where I should add the image again, so I added ti again and there I was able to link the image and the item.
    I understand that for the image to be available in the end-user's internal catalog screen, I should modify UI Configuration. So I added the Image field by going to Customize Display Tab-> and adding it in the Item Lists, Cart Preview, Compare, Item details radio button. But when I checked on end-user's internal catalog screen, Image column is still not there.
    I believe PDF and Image has the same process. But how could I add the link between image and item for the entire catalog items?
    Please also help on how to activate the Hyperlink and Scale price functionality.
    Thank you so much!

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Hyperlink and Report Parameters

    Hi,
    I have a webi report which has drill filters. I have a drill filter on Month_Name_And_Year column. When I select the drill filter it gives me the report for that particular month_year. In the webi I also have a hyperlink to a nre report which is a detailed report. When the user clicks on the hyperlink I would want them to open the report  for the drill filter value that I select. I believe i need to pass the drill filter value as a paramter and how would I be able to open the detail report for the drill filter that I have selected.
    the code as a hyperlink is as follows:
    ="<a href=http://dev/businessobjects/enterprise115/InfoView/scripts/opendocument.aspx?sType=wid&sDocName=A%20WEBI%20Curd%20Installations&sWindow=New&sPath=[Breed],[Portal Analytics],[Supplemental Services]>"+[Number Of Curd Sales]+"</a>"
    I would require guidance what changes i wil have to make it at hyperlink and the detail report level to have it in sync with the summary report.
    Thank You,
    boe user

    boe user,
    Try this:
    ="<a href =" + "http://webwasqwn1.ecorp.cat.com:8322/OpenDocument/opendoc/openDocument.jsp?sType=wid&sDocName=fsitem&lsSEnterItem Node Name:="Query 2.Item Node Name(If IsPromptAnswered("Enter FS Items") Then "&lsSEnterFS Items:="+URLEncode(UserResponse("Enter FS Items:"))) + Object + ""
    Have a look on this thread also:
    Linking 2 web I reports
    I'm Back

  • In Pages 5, Maverick, How do I stop automatic conversation of URLs to hyperlinks and seeing them underlined

    There used to be a preference setting in Pages.  Now it seems gone in Pages 5.   So how do I stop automatic conversation of URLs to hyperlinks and seeing them underlined in text.  Sometimes I want it, but not always.

    The preference setting to turn off links is gone. When you enter content that triggers link detection, a link character style gets applied. Right-click on the link, choose Edit Link from the menu, and then Remove.
    To prevent Pages from automatically detecting links, visit Edit > Substitutions > and deselect Smart Links.

  • I forgot my Apple ID security question answers and cannot contact iTunes support by phone. The only way I can ask for help is via email. How can I make that happen?             Thanks

    Hi! So I haven't used iTunes in a few months but I just got an iTunes gift card and want to make a purchase. iTunes redeemed it just fine but now that I want to make a purchase I am having problems. I can't remember my security question answers and iTunes is requesting them. I have two other verified emails but the are NOT rescue emails. I can't contact iTunes over the phone because my phone lines are out and are going to be out for a long time. The only way I can contact them is by email. How can I do this? Is there an easy way to just reset all my security questions? Please help a girl out. I just want my music!
    Thanks so much

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

  • If I forgot my security questions/answers and I'm trying to buy on a new device but same Apple ID, what do I do?

    If I forgot my security questions/answers and I'm trying to buy on a new device but same Apple ID, what do I do?

    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service

  • I have two apple ID's but cannot remember the security question answers and the email address is no longer active - how can I access this account

    I have two apple ID's but cannot remember the security question answers and the email address is no longer active - how can I access this account as it seems to be the one my icloud space is attached to.  I haven't backed up my ipad or photos for a while. 

    Security questions:
    https://discussions.apple.com/docs/DOC-4551
    http://support.apple.com/kb/HT5312
    If you don’t know your security questions, phone Apple (using the number listed here:  http://support.apple.com/kb/HE57  ) and ask for the Account Security Team.
    About 2-step verification of your Apple ID:
    http://support.apple.com/kb/ht5570
    This is also useful:
    http://www.macworld.co.uk/ipad-iphone/news/?newsid=3463233&olo=email

  • G4 displays flashing question mark and blue face at start-up

    like the title says, my powerbook refuses to go to the desktop and instead gives me a dark screen and in the center you can just make out a folder icon and on the folder icon flashes a question mark and then that picasso-esque blue smiley face. these two images flash sequentially, one after another.
    this started happening about three days ago. the day it started, i got up, checked my email, and then shut the computer down. but then i saw the soft light flashing on the closed laptop that tells me that it is still on. so i figured that i hadn't completed the shut down process all the way. i opened the laptop and almost knocked it off the perch it was on. i grabbed it in time to prevent it from falling, but in the process i mashed some buttons with my thumb. when i turned on the computer, it briefly flashed the desktop and then went dark and started flashing the icons as i described above.
    i am in japan right now, so getting ahold of apple in the states is somewhat difficult. any amount of help is very much appreciated. i've already tried a full shutdown by taking the battery out and holding down the power button for 5 seconds, as described on the apple website. this didn't work. i'm not sure which version of OS i have, but i'm pretty sure it is at least 10.0. i got the computer last year right as tiger was coming out.

    also, the power icon on the power button is not showing any light, and it wasn't showing any light for a day or so before this event happened.

  • Can I get rid of the underlined hyperlink and just have roll-over links?

    In iWeb 2009, can I get rid of the underlined hyperlink and just have roll-over links?

    You have to put them on the server where you are publishing your site to. Where are you hosting your site? If it's a MobileMe account then you have two options:
    1 - put the photos in a folder, name it "Pics" and put that folder in your iDisk/Pictures folder. Then use the following URL: http://homepage.mac.com/YourMMe_Account_Name/.Pictures/Pic/FileName (don't forget the period before Pictures).
    2 - put the "Pics" folder with image files in your iDisk/Web/Sites folder and use the following URL: http://web.me.com/YourMMe_Account_Name/FileName.
    If you're hosting on a 3rd party server it would depend on if you're using a domain name or not. I'm not familiar with 3rd party servers so Wyodor, Ethmoid or someone that is will need to point the way.

  • HT5312 I forgot my security question answers and answered wrong too many times so now it won't let me download anything even though I know my password, what do I do?

    I forgot my security question answers and answered wrong too many times so now it won't let me download anything even though I know my password, what do I do?

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (95618)

  • I have a problem with iphoto (have a mac book pro): the icon in the dock appears with a question mark, and the application is gone!!! Can someone tell what's going on? Yesterday I had the same problem with itunes

    I have a problem with iphoto (have a mac book pro): the icon in the dock appears with a question mark, and the application is gone!!! Can someone tell what's going on? Yesterday I had the same problem with itunes: I downloaded the last version (it's free), but I cannot do the same with iphoto, and more important: I need to know what is happening!!! Please help me!

    Applications should not disappear all by themselves.
    If they are then that coud indicate serious problems with your hard drive.
    Backup everything up as quickly as possible.
    Using Disk Utility verify your system disk.
    Allan

  • Cannot Export PDF with Hyperlinks and Bookmarks

    August 1, 2008
    Hi Everyone,
    I've recently upgraded to InDesign CS3. I opened a 40 page document that was completed in InDesign CS2. When I try to export to a PDF (with include hyperlinks and bookmarks) the program quits once it reaches the 5th page.
    I've tried exporting without hyperlinkes and bookmarks checked and PDFing works fine. I had no previous PDFing issues when working in CS2.
    Any suggestions/tips/guesses would be appreciated.
    Thank you,
    NB
    Windows XP
    InDesign CS V.5.0.3

    Hi! I need help w indesigns hyperlink...
    I am working on a long document and have 5 files, I was able to use hyperlink on each one that way the reader could jump fr one file (or page) to another. The hyperlink worked perfectly on PDF. Now I need to merge these five PDF's into 1 PDF file but the hyperlink that I have created on individual files doesnt work in a combined PDF. Is there a run-around on this? Any suggestions? I'm just new in indesign and need inputs. Thanks!
    Im using Windows XP and CS3.
    Nelle :)

  • Reading Question id and Answer ID in a survey

    Hi,
        I have the following input with me.
    1. Survey ID
    2. Survey Version
    3. Question Sequence number like 1,2,3,
    4. Answer Sequence number
    Now I have a requirement to read the question id and answer id which is generally in the below format.
    id_<guid> .
    Please let me know how can i retrieve the the question id and answer id with the above inputs.
    Regards,
    Manas.
    Edited by: manas sahoo on Aug 4, 2008 1:53 PM

    Hi
    I have seen your question ,i need the Question Id and Answer Id for survey,how did you achieve this requirement .please suggest me.

Maybe you are looking for

  • How can we change the existing package details of a report

    I am having one repor. For that program I was saved in $tmp package. Now I need to change my packge from $tmp to $atb. How can I do this. Same problem I am facing for one database table also. I need change my package details for one of my customized

  • How to insert check box in pages?

    This may be a dumb question, but how to insert  check box in Pages?  Thanks

  • Lookup creation and using this lookup in SQL query

    I Have two tables one table called T_KEY_VALUES (KEY_ID , VALUE) and other is my transition table T_TRANSACTIONS (VERSION_ID , COL_VENDOR , COL_PREFIX, COL_RECIPTID , COL_STATE , COL_COUNTRY ..) The data looks like below: T_KEY_VALUES: KEY_ID , VALUE

  • IMac G5 vs Intel Mac Mini

    Hi guys, My question is actually the title to the thread... which is faster? I have a 20inch iMac G5 Rev A and am debating selling it, putting an intel mini into a spare cube case and running two monitors from it or something - or at least one big on

  • How can I tell if my phone has siri

    HOW can I see if my phone has siri