Hide and unhide button..how?

Guys, need you help.
action script...below is the situation.
I have 3 entry box
1. name1
2. name2
3. name3
I have 1 image button and 1 click button.
1. image button.. called "button1"
2. click button.. called "click1"
how do use action script to do these behaviour.
if the user leaves the entry boxes or even leaving 1 empty.. the image button and click button will not be available. IF, the entry boxes are filled up..the buttons will be available and ready for clicking.
im using CP4.
hope you can help me.
Thanks and best regards.

Hello,
You are talking about actionscript, but I think you want an advanced action?
Are you validating the entries in the Text Entry Boxes? Or is it not important what they did give as input there, just that they shouldn't be empty.
By the 'click button' do you mean a Text Button or a Click Box?
If you want an advanced action, you'll have to start by creating a user variable to be able to check if the TEB's are empty. Although the examples are worked out in Captivate 5, the principles of such a check are explained in one of my blog posts, you can have a look meanwhile:
Where is Null?
You'll need an event to trigger the advanced action. This could be a button or you can trigger an advanced action after each TEB-entry. That is another question for you: what do you want?
Lilybiri

Similar Messages

  • How do I hide and unhide photos in Photos for Mac

    How do I hide and unhide photos in Photos for Mac ? Also, how do I delete an Album ? It appears that Photos is a work in progress that is only about 10% done. The Help in Photos is essentially useless. Where can I find the equivalent of a manual or instruction book?

    How do I hide and unhide photos in Photos for Mac ?
    You can hide photos in the Photos view, but not in the albums:
    Select some photos, ctrl-click, select "Hide".  Unhide from the Hidden Album.
    Also, how do I delete an Album
    You can only delete albums that you created, not the built-in albums.
    Select the album in the Sidebar. Ctrl-click it. Select "Delete Album".
    The Help in Photos is essentially useless. Where can I find the equivalent of a manual or instruction book?
    I have not read this book yet, but the series is usually very good:
    "Photos for Mac: A Take Control Crash Course," penned by Jason Snell, formerly of Macworld and now at Six Colors.
    Buy it for $10 > http://tid.bl.it/photos-crash-course-cart
    Get more info > http://tid.bl.it/photos-crash-course-info

  • Hide and unhide panel

    I have many panel in one screen. Each panel has buttons, labels and etc. So how to hide and unhide every panel?
    Thank you

    Sort of like minimizing...
    let say the real size of panel is 400 x 400 pixel, then i want to minimize to 400 x 20 pixel.
    But the panel is dynamic, i can maximize and minimize again and again...
    Thank you.

  • What are the mysterious keys for hide and unhide programs?

    There is a strange symbol next to the apple symbol that is part of the hide and unhide short cut keys.
    I cannot find what these are after searching help, studying the keys and asking several people.
    This must be so obvious it escapes me!
    I have the new photoshop elements and it doesn't have the minimize buttons so I need to hide it.
    Help!

    AH! Yes. I guess I never made the connection before because I never use Command-H. I've had a multi-button mouse since the Stone Age, and have always had one button assigned to Option-click, so have always hidden apps by a middle button click on the Desktop. Also I almost never use Command-H to hide selections in Photoshop because I tend to forget I did that and then get frustrated when something like the clone tool doesn't work because I'm cloning outside the selected area.
    After reading the blog entry you sent I started experimenting to see which "normal" conventions Elements wasn't following, and, since hiding and unhiding was the topic at hand.... BTW, thanks for the link to the blog. I had never really thought about many of those idiosyncrasies before, like fly-out menus for instance.
    Francine
    Francine
    Schwieder

  • Hide and show button

    hi , i want when i click on show button then the show button hide and the hide button show , and vice versa , how i will do that through java script or any method plz help

    Hi little foot ,
    I am using apex 4.0
    can you tell me how to make the hide and show region to open it on sidewise now its opeing in downwards direction can you tell me .
    Thanks & Regards.
    Shadab

  • I dont have the awsome bar or the home and i also dont have the back and forword buttons how would i get them back?

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/794662]''
    i dont the a sarch bar or the back button or forward buttons how do i get them back

    * In Firefox 3.6 versions on Windows and Firefox 4 on Windows and Linux it's possible to hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu of a toolbar.
    * Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also:
    * [[Menu bar is missing]]
    * http://kb.mozillazine.org/Toolbar_customization

  • Button to hide and unhide rows in Adobe Livecycle

    I have table in Adobe Livecycle I want button when I press to unhide two rows and if I need two more and .... And I need same button to hide two rows.
    Thank you.

    Use the 'presence' property. If your row is a static row (ie you see it in design time), then simply reference the name: myRow.presence="hidden" or myRow.presence="visible".
    However, if it's a dynamic row (ie you add them at run time), then you have to reference the name of the row along with its index: myRow.all.item(3).presence="hidden". The index of a row is zero-based, that means the first row is 0 and in my example row 3 is the 4th from the top.
    Kyle

  • How to hide and show button based on if row is selected in tabular form

    Hi,
    Im pretty new to apex. I am using version 4.1. I have a tabular form and what i want to do is only have the delete button show if i select a row from the [row selector] column. Can this be done using a dynamic action? I have tried it that way unsuccessfully. Please help or let me know if you need any more information.
    Thanks

    Do you mean if the check box is selected in the row?
    Assign a static ID to the delete button, e.g. MY_DEL_BTN. Look for "Static ID" under the Attributes section of the button.
    If so, make an advanced Dynamic Action based on Click and a jQuery selector. Usually, this element is name "f01" but, you need to make sure. Assuming it is "f01" then your jquery selector would be:
    input[name="f01"]set the event scope to live.
    Your dynamic action will fire JavaScript. (BE SURE TO UNSELECT FIRE ON PAGE LOAD). To make sure you have the right jQuery selector, at first just put a pop up message in the JavaScript.
    alert('You Clicked the Row Selector!');Run the page. Click the row selector. If you get the pop up you have specified the jQuery selector correctly. Yay!
    Then, assuming the above is correct. You can now determine if any have been selected.
    Now, set it back to SELECT TO FIRE ON PAGE LOAD (You want the delete to be hidden when you first open the page).
    Change your JavaScript to this:
    var checkedCnt = $("input:checked").length;
    if( checkedCnt > 0 )
       $('#MY_DEL_BTN').show();
    else
       $('#MY_DEL_BTN').hide();
    };-Joe

  • How to hide and unhide scrollbar at runtime

    I have a multiline item and i attached a scrollbar to this item. However, I only want the scrollbar to appear when my input text is more than the multiline text. Suppose my multiline can allow 5 lines, If i want to go to the sixth line that is when i want the scollbar to appear

    Ade
    You cannot set the items multi_line property. Instead you can check if multi_line has been set to true or not.
    DECALRE
    V VARCHAR2(10);
    BEGIN
    V := GET_ITEM_PROPERTY('ITEM_NAME',MULTI_LINE);
    END;
    MULTI_LINE will return TRUE /FALSE ( a varchar2 type).
    For more details, check the documents on SET item_property on what all properties that can be set .
    Cheers... Bob

  • Hide and show button at the top or at the end of the form

    Hi,
    I have the form that has 2 buttons, move up and move down, which is used to move the subform up or down. I currently have it to pop up a message: "The current item can't be moved up" when the user try to move that item up since they are already at the top of the form
    or "The current item can't be moved down" since they are already at the bottom of the form.
    Now I'd like to have one to be hidden depend on where on the current location instead of the pop up message.
    Can any one please advise.
    Thanks in advance,
    Han Dao

    Hi Naill,
    Here is the code that I try to place in the layout:ready event but it does not seem to work. Can you please take a look at it.
    ==============The Code=============
    form1990.Questions.MoveSub.up::ready:layout - (JavaScript, client)
    //Move Up
    if (xfa.resolveNode("form1990.Questions").index != 0) {
      var nIndexFrom = xfa.resolveNode("form1990.Questions").index;
      var nIndexTo = xfa.resolveNode("form1990.Questions").index - 1;
      _Questions.moveInstance(nIndexFrom, nIndexTo);
      xfa.form.recalculate(true);
    } else {
    // set the button to hide at the top of the form.
      xfa.resolveNode("form1990.Questions.MoveSub.up").presence = "hidden";
    form1990.Questions.MoveSub.down::ready:layout - (JavaScript, client)
    //Move Down
    var nIndex = form1990.Questions.index;
    if ((nIndex + 1) < _form1990.Questions.count)
    var nIndexFrom = nIndex;
    var nIndexTo = nIndex + 1;
    _form1990.Questions.moveInstance(nIndexFrom, nIndexTo);
    xfa.form.recalculate(true);
    else
      xfa.resolveNode("form1990.Questions.MoveSub.down").presence = "invisible";
    ===========End ========
    Thanks,
    Han Dao

  • Is there a way to hide and unhide specific files programmatically using Labview?

    I writing an application that produces 3 binary data files and I want the user to only see 1 of the 3 files.
    I'm using Labview 6.1 and windows 2000.

    You can use System Exec.vi to call attrib.exe. Atrrib.exe is a command prompt program (left over from the DOS days) which can be used to read or set file attributes (including hidden).
    A sample command line passed to System Exec.vi follows.
    attrib +h "C:\My Documents\My File.bin"
    The quotes around the file name are required if the path or file name doesn't follow the old DOS 8.3 format.
    To hide a file, use the +h option. To unhide a file, use -h.
    The limitation of using this approach is that the Windows Explorer can be set to display hidden files. You might want to put the hidden files in another directory.

  • Maverick 10.9 download.  Command key makes the current page hide and return.  How can I stop this?

    Hello,
    The Maverick update on my 2009 Mac caused the command key to cause the current page to hide.  It sometimes stays in the side but mostly, after a delay, will return to the screen with the action completed.  Such commands as Print, Copy, Paste, all of the Command shortcuts do this.
    It is impossible to focus on the work since it disappears, delays and then returns. 
    How can I change this to act like the usual commands and just make the action occur instantly on the page as it rests on the screen?
    Thanks

    Hello,
    The Maverick update on my 2009 Mac caused the command key to cause the current page to hide.  It sometimes stays in the side but mostly, after a delay, will return to the screen with the action completed.  Such commands as Print, Copy, Paste, all of the Command shortcuts do this.
    It is impossible to focus on the work since it disappears, delays and then returns. 
    How can I change this to act like the usual commands and just make the action occur instantly on the page as it rests on the screen?
    Thanks

  • My dock is not smooth when it hides and unhides

    I noticed that when I have many icons in the dock, it's real chunky when I move the mouse over it. Is there any fix to that? When I first installed 10.4, the dock moved really smooth- now it's not- could this be because I have too many icons?

    Another I've also found is to Update the prebindings.
    In an Admin account Launch Terminal and type this command
    sudo update_prebinding -force -root /
    This will force the update of prebindings and optimise your system.
    Put up what your Page in/outs are though, it could be that lack of memory is causing general system sluggishness.
    Mark

  • Hiding and Unhiding an application GUI

    Hello,
    Is there any way to hide and unhide an application gui using KeyListener?
    We have an application that we can start up in "quiet" mode (ie not show the gui) and we would like to be able at some time to press a certain key combination (something like ctrl-s) and have the GUI display itself.
    I guess the first question is whether or not something like this is possible.
    We have a main line that instantiates the Gui class. So the GUI is not a part of the main class. ie in our main we have something like :
    import gui;
    class mainClass {
    public void main(String[] args) {
    boolean quietMode = false;;
    for (int i; i<args.length; i++) {
    if (args.equals("-q") {
    quietMode = true;
    Gui theGui = new GUI();
    theGui.pack();
    if (!quietmode) {
    theGui.setvisible(true);
    ... etc etc
    How would one attach a KeyAdapter or KeyListener, ensure the focus and enable the ctrl-s display gui functionality. Is this at all possible?
    We are running on Linux Red Hat 7.2 using JDK1.3.1_01.
    Thanks for any answers you may be able to provide.

    Sorry to say it is not possible because your listeners are registered in your app not your os
    I guess you have to use jni or something to access your os to read key/mouse inputs

  • Hiding and unhiding pictures (z10)

    Was trying to find how to hide and unhide pictures for the new z10.  The old ones i know could go through media manager/explorer, but can't figure out how with the new phone.   Any help would be appreciated.

    This a simple video I've found on how to do it and it works hope this helps you guys . http://m.youtube.com/#/watch?feature=em-upload_owner&v=etvP_C7Hpz4&desktop_uri=%2Fwatch%3Fv%3DetvP_C...

Maybe you are looking for

  • Formula not working in Adobe FormsCentral

    I have a formula which I have embeded into my PDF Form using Adobe Acrobat. All is fine and dandy in Acrobat, but the formula does not work when it is imported and converted for FormsCentral, I have to manually calculate the formula into the field wh

  • Hands Free Bluetooth on my Iphone Stinks - Lots of Questions

    I'm not new to iPhones... I've had 3 now.  I just got the 6. I upgraded because I thought the fingerprint recognition would provide a better hands free experience in my car.  I have a Ford Fusion with Sync. First thing which is probably more of a com

  • Access denied on first login, then it lets the user in (Fedora Core 5)

    I am getting the message "Access denied by Application security check" the first time I login to the db (dba privs.) from a remote machine. Then I click the link to return to the application and log in again. This time it will let me in. Then I close

  • How to use FCP 7 AU distortion filter

    I need to reduce as much distortion as possible from some deposition testimony that has clipping. I know reducing volume and maybe reducing the mid's are a place to start. Suggestions on using the AU distortion filter, or other means of accomplishing

  • Technical specifications for adding a field in screengroup

    Hi , I have a view profile say FL .  In the activity and layout view I have added a Tab say "85" -Additional data 3- . Now I have made tab active and used 150 ans screen group "150-USER data" I want developer to add a new cusom filed in screen group