How do I make hyperlink buttons hide until I want them?

I have a map with stops on it. I have made each stop a (on relase or Tap) button so that a box shows up on the side with info about that stop.
Reasonable easy...except i want to put a close button and hyperlinks on this text box. So i have created multiple actions for a button to hide buttons show other buttons etc
This is where it gets tricky. It seems that if i create a hyperlink button and tell it to be "Hidden until Triggered" it doesnt stay hidden. it is invisible but if i move the mouse over that area the hand curser comes up. i cant have them being acidentally clicked. Is there anything i am doing wrong? There is going to be ALOT of these so i have to get it right now.
any help will be greatly appreciated.

Encore does not provide scripting which is what I think may help.
But it may not, since "hover" implies you are playing back on computer. That won't work even for the workaround used for this by using autoactivate to move from a still to motion menu.

Similar Messages

  • How can I make hyperlinks work from a Flash/SWF presentation?

    How do you make hyperlinks/buttons work in Flash/SWF Captivate 5.5 presentations? This did not seem to be an issue with Version 4. I cannot publish to video (i.e. mp4) or as an executable file for posting on our internal system. If it cannot be done in Flash/SWF, how else can I get buttons/hyperlinks to work? Thank you.

    Welcome to our community
    Please take a look at the links below. Not only do they answer your question, they are there to help you get the best forum experience.
    Forum Participation Suggestions
    Frequently Encountered issues
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How can you make one button preform different actions in Xcode?

    How can you make one button "preform a click" and "orderfront"? Is that possible? Because what I am doing is making a welcome window to my application for Mac OS X 10.6, and I have two buttons in that window, one says "Connect" which connects a a WebView to a url and the other button opens up the main window. So how can I a make a button do multiple things at once??

    Ah - If you are just using bindings between various objects from Interface Builder, you can reduce your application code a bit (sometimes quite a bit), but there is only so far you can go. Typically variables and routines are defined in your application that Interface Builder hooks into, so that your application code (usually Objective-C, but can be others) can use these variables and routines to determine what is happening in the user interface.
    I'm not sure how up-to-date the project code is (or what programming code you are familiar with), but you can take a look at Apple's Cocoa Application Tutorial to see what is (usually) involved in creating an application.

  • How can i make hyperlink to local file for dowloading

    How can I make hyperlink to a local file for downloading it, it seams that only www links work in web Ui.
    Thanks

    If we assume that you have a LabVIEW application running on your cRIO that is exposing some data through web services, there are a couple of possibilities.
    You can create a web service call that returns the log data. In order for the browser to treat this as a file, you must set the correct content type in the http header. To do this you can't use the default form of data output. Instead you must create an "httpRequestID" input to your web service VI. With this you can call "Write Response.vi" to give the log data and "Set HTTP Header.vi" to specify the type (text/text probably works for a log). You can look at "examples\comm\webservices\address book\FindContacts.vi" to see an example of calling these 2 VIs. Once you create that web service entry point, you can set that as the URL of the hyperlink control and it should work.
    Another option is to have the cRIO application write to a log file that is under the root of the web server running on the machine. (This is the same place the xap for your Web UI Builder application is put.) This file could then be served up through the web server just like any other file.
    With either of these solutions there may be concerns about the browser caching results rather than requesting new content each time. There are additional values that can be set in the http headers with the first solution that can help with this, but I think there is still some variation between browsers.

  • How do I make a button NOT take focus when it is clicked?

    I am trying to create a virtual keypad and the problem is that when I have a Robot make a KeyEvent for a certain number when a certain button is pressed, the TextField loses focus and the focus is placed on the button that was pressed, so nothing appears in the TextField.
    How can I make a button NOT take the focus when it is pressed?
    Edited by: tox0tes on Nov 28, 2008 8:06 PM

    great. another way is to have a call to myTextField.requestfocus() in the button's actionlistener actionPerformed method, but that leads to tight coupling.

  • How do I make a button onj the form which will submit and send the pdf as an email?

    how do I make a button on the form which will submit and send the pdf as an email?

    You can set up a button with a "Submit a form" action and use a mailto type URL to specify the email address you want the forms sent do. If you want to send the entire PDF, select that option and not FDF or anything else. The mailto URL should not include any spaces and the "mailto" part should be lowercase, like:
    mailto:[email protected]
    This will attempt to initiate an email using the users default email client. If the user does not have one set up or there is some other problem, the email might not get initiated. If it needs to work with Reader versions prior to 11, then the form needs to be Reader-enabled, which you do in Acrobat 11 by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools

  • How can I make a button that on press the object appears and on second press the object to disappear

    Hello,
    I'm quite new to flash programing, and I don't know how can I make a button that will make the object appear and disappear.Till now I have this code for the appear:
    on (press)
        _root.top1.gotoAndStop(2);
        _root.topp.gotoAndStop(2);
        _root.mm1.gotoAndStop(2);
              _root.m1.gotoAndStop(2);
    but from here I'm stuck.
    Thank you for your help

    What you can do is use the _visible property of the object to make it appear and disappear, or more correctly, use the opoosite of the _visible property.  You should not put code "on" objects, keep it in the timeline.
    If "object" is the instance name of the object you want to toggle, then in the timeline code you can use...
    object._visible = false;  // start with the object being invisible
    yourButtonName.onRelease = function(){
        object._visible = !object._visible;
    That one line in the function sets the object's _visible property to be the opposite of what it currently is.

  • How can I make my buttons be gone forever?

    Just starting out with Flash and have run into a problem. I have several scenes with buttons that can be pressed once and then they disappear using:
    myBtn1.onRelease = function(){ this._visible=false}
    But when I go back to the scene the buttons reappear. How can I make my buttons be gone forever?

    if you have more than 1 button that should be made not visible at any given time, you'll need to use an array to store those button references.  otherwise, you can use:
    var alreadyRemoved:Boolean;
    if(alreadyRemoved){
    myBtn1._visible=false;
    myBtn1.onRelease=function(){
    this._visible=false;
    alreadyRemoved=true;

  • How can I make a button "react"?

    This is probably a super silly question, but you know how it is, sometimes we sit on the answer and still can't find it... How can I make a button react to a click? I just want the simple effect of the button changing colors or looking like the user pushed it. Right now it's just the same old plain button, no matter if I click it or not, you can't really tell the difference. How can I give it the "pushing the button" effect? Thanks guys!

    You can choose image button and then choose from the available image buttons, or click on the folder icon when you select the image button and choose from the Gallery of Captivate 6.
    Few image buttons change color on hover or onclicked, these effects are predefined in them.
    Or you can edit that button on which you are working, from properties Panel.
    The Post and Cancel button on this thread seems like a transparent button in Captivate with different fill and stroke color, and transparency is also less, and with corner radius of 0.
    You will find these all optionns, when you will click on that button and then click on the properties panel.
    Thanks.

  • I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appr

    I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appreciated.

    OK, it now sort of works. A couple of problems here:
    After updating IOS, Safari iCloud was "automatically" switched off
    Switching it on had no effect
    resetting my iPad automatically switched off safari iCloud again
    after switching it back on, it said "turning off safari data"
    switched it off and on again, now it said : "turning on safari data" and the sync worked
    On IOS 7 no problems
    The bookmarks not being displayed was because after pressing the book icon, it defaulted to showing the history and I had to press "Back" to get to the other options

  • How do I make a button in Photoshop for Muse?

    Three months ago I found this info, and I've made a dozen buttons. Can't remember how to do it. I've spent all afternoon trying to find the info. All I get is how to place a button. How do I make it?

    Thank you to both Zorinos and jamtec; I appreciate your responses.
    My question was how to configure the PS file, but I think I wasn't clear about that.  I finally went back to a button I'd made in January and figured out how I'd made it: A new file, transparent background, a layer with the image and  layer with text (Or transparent background and one layer with image and text for my purpose.) Then File/Place PS Button creates the button. I didn't need to allocate different states.
    What is so annoying is, I needed ten seconds worth of information: the PS file. It is not available except in time wasting, obscure videos. The James Fritz video (http://tv.adobe.com/watch/learn-muse/importing-a-photoshop-button) doesn't mention the PS file until after two minutes of jabber, and it is almost unnoticeable hidden in the middle of a sentence.
    I don't like videos; they waste time. Written instruction are more efficient. For me.

  • How do I make multiple buttons in my flash animation?

    I am new to flash, and I have no training in it whatsoever. I
    created a flash animation with flash CS3 for my photography
    website, and I want to link each of the images to different
    galleries on my site. When I created my first button it worked
    fine, but when I try to create actions to link more than one image
    as a button, keep getting an error that says "1021: Duplicate
    function definition." How do I make each image as a separate
    button?
    I used the video of this tutorial as my guide to learn how to
    create a button:
    http://www.adobe.com/designcenter/flash/articles/flacs3it_firstflash_pt1.html
    Also, when I run the animation to test it, it loops, and I
    don't want it to loop. How do I stop it from looping?

    I used the method shown in the tutorial I mentioned to create
    it (created a new layer for the button, selected the area of the
    image for the button,used modify -> convert to symbol
    -> button, I edited it so it was an invisible button by
    moving it to the hit frame, gave the selected area an instance name
    of Hizumi_btn, inserted a new layer for actions and added the code
    I have attached to this post.
    I assumed that I would just need to repeat this procedure for
    each of the other images in my animation, but when I did that I
    received the error.
    I greatly appreciate any help you can give me.
    Thanks for the information on how to stop the animation.
    Here is the code I used to create my first button.

  • How can i make save button of a pop up window inactive?

    Hi...
    When we open a document attached to an opportunity,
    a pop up opens up in new window with open,save and cancel buttons.
    The document is opened by creating a url....
    How can i make the save button inactive?
    Any helpful pointers would be rewarded...
    Thanks...

    Hi..
    This thread remains closed...

  • How do you make a button download pdf file in edge animate?

    Hi does anyone know the code or know how to make a download button in edge animate, that when you click the button it will fetch a pdf file from your pc root folder and offer it to download.

    Hi Wayne,
    To make a button download a PDF, you'll have to upload your PDF somewhere online and add the link to your button in Animate using the Open URL button in the actions popup.
    Here's a good tutorial which will get you started with some of the basics of Animate, including how to create buttons. The link on your button would just be the URL of your PDF.
    Cheers,
    Sarah

  • How do I make a button have a permanent down state?

    How do i make it so when you when you click on the button it
    changes the button..
    for example
    normal > red
    rollover > green
    when clicked > stays blue

    I solved that problem by making the down state an actual
    frame in the timeline.
    ie. I want something to happen when you press the button.
    That something is going to happen on frame 10 and the button is on
    frame 1-9. Make a Layer called ACTIONS. Then while on that button
    frame range (1-9) and after selecting that button, in the Actions
    panel I put
    on (release) {
    gotoAndPlay(10);
    Then I select the ACTIONS layer I created and put a
    stop();
    at frame 9... so it waits for the button. you could just send
    it back to frame 1 if you want an anim to loop.
    Anyway, on Frame 10 (when that button is pressed) I replace
    it with what it stays with... the down or SELECTED STATE button.
    This was how fixed my buttons to stay down.
    there is probably a better solution somewhere.

Maybe you are looking for

  • Getting error message when trying to display error messages on a ProfilePage

    Hi All, I'm getting following error message when trying to display error on a Profile page. On page i'm seeing this:      org.apache.jasper.JasperException: java.lang.IllegalStateException: getOutputStream() has already been called for this response

  • Preview in Browser button is gon

    I'm not sure what happened, but the globe symbol for the preview in browser button is gone from the document toolbar in Dreamweaver 8. I haven't really seen this on the forum. Please understand, preview in browser works fine if I go to it through the

  • Checking header and trailer record

    Hi Plz can any one guide me writing UDF for checking whether header record exists or not i am using node funtion Exits... In UDF i wanna check the value of Exists if it is true continue the process if it is false raise an exception How we write UDF f

  • Which external hard disk format (fat32 or ntfs) is compatible with macbook pro ?

    Hi . I just bought a macbook pro (13.3 inches) . As the internal storage is not much , i am thinking if buying an external hard disk . Please guide which format of external hard disk (fat32 or ntfs) is compatible with my mac. Thanks .

  • How to compile .java files in windows server

    Hi All, I want to compile my CO.java file in server directly how can i do that my server is windows server If it is Linux i can login through putty and go to java top and then file location then i use to do javac filename.java then i use to get filen