Indesign - button with multiple icons.

Hi all,
I'm pretty new to Indesign, playing around with what I can do.
I'm trying to create a button that will change it's icon when clicked.
e.g. first click - tick, second click - circle
Is this at all possible? if you could point me in the right direction that would be great.

Hi Dave,
Yes it is possible. Steps to perform:
1. Create a rectangle.
2. Select it, right click and select Interactive-> Convert to Button.
3. In Buttons panel, select 'Click' state under 'Appearance' and change appearance of your button like add drop shadow to it and your click state is ready.
Similarly you can change Rollover state as well.
For achieving your behavior, what you can do is create three buttons, one normal, second with tick and third with circle. Initially hide second and third button and on trigger of first button show second button and hide itself and then click of second button show third button and hide itself. There is an action Show/Hide buttons in Buttons panel which you can use to achieve this.
Thanks
-Anshul

Similar Messages

  • Make a button with an icon

    Hi all.
    I have a new problem. I want to make a button as an icon e.g. when I push a button to open a file I want to display the button with the icon.
    I'm on devsuite 10g.
    Can someone tell me which are the steps to follow to do this???
    Thank,
    Fabrizio

    I have restarted the form builder and the http
    listener but I don't see the icon on my button.
    Here is the value of my
    UI_ICON_EXTENSION
    .gif;.jpg;.ico;.GIF;.JPG;.ICO
    And this is the value of my
    UI_ICON
    c:\oracle\devsuite10g\reports\plugins\resource;
    C:\ORACLE\devsuite10g\cgenf61\ADMIN\ICONS\PC;
    c:\oracle\devsuite10g\forms\java\icone.jar
    Fabrizioyou cause a Vertigo for your Forms Builder :-)
    Try to specify only one extension, .ico in Forms Builder are more accurate in size. Try it.
    Tony

  • Buttons with multiple actions doesn't work in v32.1

    We had buttons in our previously published folios that bring one multi-state object to first state and second MSO to other state which depends on which button is pressed. It works in app v32.0 and lower, but it doesn't work longer after trying to update our app to v32.1.
    If there is no more possible to have buttons with more than one action, I think we should be warned in What's New in Relaese v32.1 notes. Because it's not happen we consider it as a bug. Can someone please tell us whether this is a permanent change to button functionality in DPS folios or if it is happen by mistake?

    Hello Michelle,
    I was wondering if you were able to see my post today about problems with MSO's and whether you were able to get any solutions for the previous posts on this thread?
    I have been in contact with the Adobe support team with regards to the problems I am having with the App I've created  and sent the App and some sample indesign files for them to look over. They have been really unhelpful and just given me this as the response:
    I have also researched about this issue and would like to inform you that there are several changes which have been incorporated in iOS 8.
    So apps which are created and working with iOS 7 might not work with iOS 8. This is an expected behavior.
    You would have to create the app again with compatibility settings with iOS 8 and then release an update for the same.
    So altogether there has to be another to be app created for iOS 8.
    As we are already 2 weeks over deadline, due to problems with iOS 8, and out of budget to cover the extra work we have had to do so far problem solving these issues, I really hoped for something better than this response.
    Are Adobe really not looking into a fix for this? Is the only solution to limit the interactivity and functionality of DPS apps so they work within the new restrictions of iOS 8?
    Any help would be really gratefully received.
    many thanks,
    Chrissy

  • Is it possible to make a button with multiple paths?

    Hello and good day Everyone
    I want to make a flash game with a map leading to various places for example school or beach like this http://www.yotreat.com/sites/default/files/190-160_1286.jpg
    if the player goes to the school she will find the teacher, and if the player goes to the beach se will find the coach.
    How can I make the player (for example) talks to the teacher at school, returns to the main map, and goes to the beach to talk with the coach, yet if she goes to the school again, the dialogue with the teacher won't be the same with first dialogue?
    =>>> Is it possible to make a button with different paths to go? As if you've watched frame A, then you push the same button again it will take you to frame B??? <<<=
    Sorry for my confusing description... I hope you get the idea >,<
    Im so desperate... I've been searching for articles about this since yesterday and I still can't find one to solve this problem of mine.
    Making games is my dream... I've made some very simple games, but I want to try a new level of difficulty
    Please help me? (>o<

    Thank you for the advice, sir Ned Murphy!
    Yes, I try to use variables now, but face another problem with it... would you please tell me what's wrong with my script?
    Here, in label: "School" I type:
    on (release) {
    if (point = 0){
    gotoAndStop("dialogue1");
    else if (point = 10){
    gotoAndStop("dialogue2");
    else {
    gotoAndStop("dialogue3");
    (it's only a testing, so I only use these 4 labels)
    and in label: "dialogue1", "dialogue2",and "dialogue3" I type:
    on (release) {point += 10;}
    on (release) {
    _root.gotoAndStop("school");
    The result when I test movie:
    1. At "School" (shows point=0), I click the button,
    2. then occurs "dialogue2" (shows point=10), I click the button,
    3. then back at "school" (shows point=20), I click the button,
    4. then occurs "dialogue2" again (shows point=10)
    even the first shot is wrong
    point=0 should be the entrance to "dialogue1", but all I can get is "dialogue2"...
    Please tell me what's wrong with my script, sir Ned Murphy,
    Thank you very  much
    Regards,
    Tami

  • How to display a button with an icon?

    Hi,
    I'd like to display an SAP-icon on a button.
    In this thread How can I show an Icon in the tapStripItem-title?
    Thomas Jung gave the following example:
    > I don't know if this definetely works with tabstrips
    > items but it does work with buttons and toolbar
    > buttons.  What I do is create a BEE and render that
    > to a string. I then use that string as the text of
    > the element I want to place my image into:
    >
    >   <%
    >   data image type ref to cl_htmlb_image.
    >   data: image_string type string.
    >   create object image.
    >   image->id = `UserSelectionCancel2`.
    >   image->src = cl_bsp_mimes=>sap_icon( `ICON_CHECKED` D`).
    >   image->tooltip = ``.
    >   clear image_string.
    >   image_string = image->IF_BSP_BEE~RENDER_TO_STRING( G( page_context ).
    >   %>
    > <xhtmlb:toolbarButton id            = "UserSelectionCancel"
    > onClientClick = "closeiframe();"
    > enabled       = "<%= enabled %>"
    > text          = "<%= image_string %>" />
    I didn't find anything else about this topic and
    tried to adopt this for a button, but that doesn't work for me either.
    <htmlb:button id            = "byButt"
       text    = "<%= image_string %> ENTER"
       onClick = "myClickHandler"  />
    Is there a way/documentation to get this done?
    Thanks in advance.
    Cheers.
    -Alf

    > This technique is really just using a BEE, there is
    > documentation on the BEE concept in the online help
    > and Brian McKellar has a weblog on the subject as
    > well.
    OK, I think I get the idea. Will check the stuff. Thanks.
    > Notice the strange D at the end of the line. This
    > isn't in the original posting. Perhaps this is just
    > bad cut and paste.
    Just bad copy paste. Yes.
    > You say that this isn't working for you - but you
    > don't describe the results. Is there an error?  Does
    > it render anything in the button at all?  Does the
    > raw HTML get rendered?
    I just saw coding in the button.
    > You want to make sure that the
    > text doesn't get encoded - which would cause the HTML
    > source to display instead. On the htmlb:button you
    > will want to set the attribute encode = FALSE.
    OK, that was right on spot. This shows me the Icon! Strike!
    > Also I am not sure that you can also pass in text
    > with the image like that.  You might have to create a
    > full BEE and add the image and a textView separately
    > into the BEE.  Then render the entire BEE to a string.
    I'll check the documentation on BEE and give it a try.
    Thanks for your answer.
    Thats a starting point for me.
    Alf

  • Setting Default Indesign program with multiple versions installed Snow Leopard

    Hi,
    when having 2 versions of Indesign installed (CS4 and CS5), Snow Leopard uses CS5 as the default application to open INDD files.
    Typically if you want to set a particular program as the default program, you right-click on the file, go to "get Info", then "open with" and pick the applications from the pulldown menu and then click right below it "Change All". Typically now that program has become the default program. This has worked all the time except in this case. When trying to set Indesign CS4 as the default program for all INDD files (use CS4 99% of the time and all INDD files on the system were created using CS4) it will not let me use the "change all" button. It automatically goes back to CS5. I want Indesign CS4 to be the default program.
    Any suggestion is greatly appreciated.
    Thanks.

    Change file associations manually or have this freebie jewel do it for you. Most likely CS5 will take over again. Otherwise you can go fish on http://hints.macworld.com/ for another way.
    Rubicode - RCDefaultApp

  • Button with an icon

    Hello All,
    I am new in Swing and would appreciate if someonw would help me in creating
    a JButton containing a text and a REAL icon image (having extension .ico).
    I tried making one using the constructor: JButton(String text, Icon icon) ,
    so I create my button as JButton b = new JButton("Ok", new ImageIcon("ok.ico"));
    But this does not seem to work.
    I had a look at some java tutorials and information on buttons, and all
    the examples include an image of type .gif (thus JButton b = new JButton("Ok", new ImageIcon("ok.gif"));
    Could anyone please let me know if it is possible to create a button that has a real icon (i.e. with extension .ico)?
    Hope someone knows answer to this.
    Regards,
    Kanita K.

    Kanita,
    Being a REAL icon does not require that the image is a ico file. An icon can be any representative image, regardless of the format. I don't know of any way to load an ico in Java, but converting ico's to gif is an extremely simple task, you don't even need a conversion program, you can even use PaintBrush (sic) and the PrintScreen button. If you need transparency in your ico, there are plenty of converters out there.
    Graeme

  • Submit button with multiple email addresses doesn't work while the same form with one email address does.  The multi email version works on windows computer.

    The email comes up when I press the "Submit" button but the email to field is blank.

    Hi,
    What is the separator character between two email addresses?  Is it a comma (,) semicolon(;) or something else?
    According to the mailto URI scheme (RFC 6068), you need to use a comma (,) to separate multiple email addresses.
    You can see the third example in the following Wikipedia page.
    mailto - Wikipedia, the free encyclopedia
    Would you double check the mailto value in your PDF form?

  • Button with multiple events/clicks

    I have a flash file, and I'm making just a simple "ad" with right and left buttons..
    When you click the right/left arrows I want it to scroll  and it basically  will alternate between 3 different photos/ad's and then
    loop.. I have set up motion tweens on my time lines so when you click it will switch pictures/ads... I cannot seem to get the action script right
    for this.. does anyone know what would be the right way to go about this thanks!

    don't cross-post - especially in the as1/as2 and as3 forums.  pick the appropriate forum and post there.

  • Best way to create button with multiple lines of display text

    now i am using html to do it.
    for example: new button("<html> ABC<br> DEF");
    but this is ok if there is only 2 lines of text. however if there is 3 or more lines of text, the text looks very bad and some case it hides some part of the text.
    also its display also depends on the version of sdk.
    Is there a better way to do it ?
    Thanks

    now i am using html to do it.
    for example: new button("<html> ABC<br> DEF");
    but this is ok if there is only 2 lines of text.
    however if there is 3 or more lines of text, the text
    looks very bad and some case it hides some part of
    the text.
    also its display also depends on the version of sdk.
    Is there a better way to do it ?Alternatives may be:
    (1)Use a layout manager that doesn't honor component's preferred
    size, such as GridLayout. Use a BIG window.
    (2)Override button's getPreferredSize() method. Make it thick.

  • Using an .ai file in indesign cs5 with multiple artboards

    Hello,
    I am working in indesign cs5 and I have a .ai file that I have linked. It only shows artboard 1, and not the other artboards. I know that if you go to objevt>objevt layer options you can toggle the layers, but how can I toggle artboards?
    Thank you,
    Gab

    Addy,
    Ask the sender to Save As, then choose CS5 in the options, so you get a viable CS5 document.

  • Adobe Indesign CS6 Pricing - Multiple Users

    Hi all,
    I would like to know in detail about the price plans for Indesign version CS6 with multiple user license (maximum 4).
    Please note that, We dont need the creative suite or the CC.
    Reply will be highly appreciated.

    I am tired searching in adobe for Indesign CS6 with multiple user license. I Know they are still selling the CS6 version.
    is there any way to contact adobe other than the forums ???
    Yeah, there is, but why bother?
    Scroll down to InDesign, click the "Buy" link, and click out of the interstitial upsell.
    One caveat: the above link may not work outside the US.

  • Is it possible to link and update external files in a Indesign document when sharing the Indesign file in Creative Cloud with multiple users?

    I am new to Creative Cloud, but have been using Adobe software for many years.
    Now we are considering sharing an Indesign file with my project group using CC.
    The Indesign file contains links to external files (one Illustrator and multiple .txt files); and we export the approved version to an Hi-Res PDF.
    These .txt files are currently hosted on our internal server but have not been linked directly: we first copy them over to local desktop and update the links in Indesign before creating a new PDF. 
    Since these file can be update by different people we would like to keep them outside the Indesign and Illustrator files.
    Is it still possible with CC to link directly to the files on our server in Indesign and see if there have been updated?
    Or can they also be stored in the CC cloud? Or is there another method?
    Thanks in advance for any help or suggestions
    Ronald

    This will work if you all use the file syncing of the Creative Cloud desktop application and then you use the Collaborate option for the folder containing all the files. Then it will work on each of your desktops.
    Links to files will not work in the browser when viewing the InDesign document from https://creative.adobe.com/files.

  • How to distribute a form with multiple submit buttons?

    I have a form that has multiple submit buttons depending on the information that is being entered and then who the information should go to.  When I try to disbribute the form, I get an error message stating the following, "Acrobat is unable to distribute this form because it contains multiple submit buttons with different formats or return URLs."  Is anyone able to let me know how I can distribute the form?

    Sounds as if you need your own web script to process submissions - written by an experienced web programmer (I very strongly recommend someone familiar with all the latest security weaknesses, and not a project for anyone else). Your needs are (it seems to me) too complex for Adobe's automatic system.

  • Use Javascript with InDesign buttons?

    I haven't been able to find ANY info about this anywhere, but I'm wondering if it's possible to call a Javascript function from an InDesign button, instead of link to a web address. This can obviously be done in Flash, but the same syntax that works in Flash does not work in InDesign. I'm not referring to the Scripts panel here - I'm talking about using Javascript with a button created in InDesign. I tried calling a JS function with the GetURL action, to no avail.
    If anybody has ever done this, please post a sample of the correct syntax for a JS function call, as well as which action I should use. Many thanks in advance!

    (Edit: I'm talking about ID CS4/CS5 SWF export, naturally)
    I don't know why, but the following URL (using a global javascript function) seems to work, somehow;
    javascript:alert('testing');
    Arbitrary function names do not work - browser just says "function not defined" - although the same stuff works in Flash. For example;
    javascript:myFunction();
    Also, there seems to be very little info on which (button) properties are included in the SWF export.
    Additional information on the subject would be much appreciated here, too.

Maybe you are looking for

  • Error occured when try to open the BI report from words (template builder)

    Hi, After i LogOn into BI Publisher thru words, successful. But when choose a report to open, error returned as "Error occured. Please check the settings and try again." My team had do various of testing, try to reinstall the BI publisher desktop, bu

  • How to find out if my add-ons are compatible with new firefox version before i install?

    Is there a way to discover whether any of my current add-ons will be disabled/incompatible *Before* I upgrade to a newer version of Firefox? Whenever I've updated Firefox, I haven't found out until After the new version is installed that my favorite

  • ICloud Keychain verification code never arrives

    I erased all content and settings from my iPad and I was using iCloud Keychain for saving passwords. I have a dumb cell phone that works fine and receives SMS messages. I have tried at least 4 times to Restore Passwords Stored in iCloud Keychain with

  • Why are the podcast search results not showing in iTunes?

    I've been trying to search for some podcasts, and my results don't show up in iTunes. I've tried on my Mountain Lion MBP, and on my Windows 8 Laptop. Same effect happens. Is there something going on with search results in iTunes?

  • Use remote to record audio on macbook

    I need to record audio to my 15" Macbook Pro (2010). I will be using Mic In / Line In jack to record audio. (Audio is coming from a mixer, which will have wireless mic connected). I just want to know, is there anyway I can use Macbook remote to start