Hide and make visible a group of buttons controls or indicators

HI
well, may be sound weird?, but I need to hide and make visible a group of
buttons, controls, indicator, graphs etc.
the pint is that I have for example like 20 buttons, and depending of the
actions of the users I need to hide them or not, I know I can do it one by one
with the visible property, but I was wondering if there is a possibility to do
it but all together, with the same property, like put all the buttons or control inside a
subpanel and then hide the subpanel? I tried this but didn´t work
any suggestions?
thanks!!!!

You can put all of your controls in a cluster. The reference to the cluster - Property node> Controls [] - will be an array of references. From there you can control the visibility of each control.
PaulG.
"I enjoy talking to you. Your mind appeals to me. It resembles my own mind except that you happen to be insane." -- George Orwell
Attachments:
cluster ctrls visible1.vi ‏12 KB

Similar Messages

  • How can I hide or make visible the fields at the order and at the delivery?

    How can I hide or make visible the fields at the order and at the delivery?
    Thanks in advance.

    Hi,
    For sales order, use user exit :
    MV45AFZZ and FORM userexit_field_modification.
    For deliveries, use BADI :
    LE_SHP_DELIVERY_PROC (see with Tcode SE18) and method CHANGE_FIELD_ATTRIBUTES.
    Create implementation in ref to this badi with Tcode SE19.
    Regards,
    Lionel

  • When i launch Bridge CC and make first click on any button, the program freezes.

    When i launch Bridge CC and make first click on any button, the program freezes. How to solve this problem?

    This error can be caused by the My Web Tattoo extension (application?) that shows as FBSMTWB in your user agent.<br />
    See http://help.fastbrowsersearch.com/
    You may need to reset the user agent after you have removed that program.
    See [[Web sites or add-ons incorrectly report incompatible browser]]

  • Help! I need to highlight a button and make the rest of the buttons fade back with white opacity

    Hi! I'm making a website in flash, inspired from this site : http://www.heyerdahlhandel.no
    I've done mouseover so that when you go over a circle you can see full text in the middle,
    but I don't know how to make the other "buttons"/circles fade white when I have my mouse over one of the circles.
    Please take a look at the webpage i take inspiration from so that you understand what i mean, it's kind of difficult to explain. http://www.heyerdahlhandel.no/
    Also, I'm kind of new to this, just so you guys/girls know
    Does anybody know what i should do?
    I'm using CS 5.5 and Actionscript 3
    -Siri

    fade/tween using actionscript you'll want to use a tween class.  tweenlite is easier to use and far more powerful that flash'es Tween class.  go to:  greensock.com
    and get his tweenlite.  copy some examples and you should be able to tween all sorts of things in no time.

  • Group Radio buttons controlling input fields

    Hi All ,
    I have 3 radio buttons which is grouped in teh form component . beside the 3 radio buttons i have 3 input fields , now i when i click the first radio button the input field beside the radio button should input enabled , rest of the input fields should be disabled ,
    Please share your ideas!!
    Thanks,
    Pradeep.

    Harsha ,
    This is the code in mu get_def method
    APPEND INITIAL LINE TO et_action_definition ASSIGNING <ls_action_definition>.
       <ls_action_definition>-id = 'ADDROW'.
       <ls_action_definition>-action_type = if_fpm_constants=>gc_action_type-validation_independent.
       <ls_action_definition>-imagesrc = '~Icon/AddRow'.
       <ls_action_definition>-VISIBLE = CL_WD_UIELEMENT=>E_VISIBLE-VISIBLE.
       <ls_action_definition>-enabled = abap_true.
    I need the buttons in my list as below
    And in List UIBB i have added 2 buttons
    in the get def i am getting 2 records for add and del but dont know why i am not getting the buttons on screen .
    i have a edit page screen in that i have 2 UIBB , 1st Form UIBB and 2nd LIST UIBB , but when i click the form UIBB its showing as section 1, and the LIST UIBB also in the section1 , i don't think it will be the issue .

  • How do you add a ViewingPlatform to a Transform Group, and make it move?

    Hello,
    I am reasonably new to Java3d and have been looking around the forum about how to add a ViewingPlatform to a transform group. I did find several posts and they did help to get me to put a ViewingPlatform into a transform group, but now I have a problem of not being bale to move it:
    The public void actionPerformed(ActionEvent e ) is where the code changes the xloc and zloc variables and make the transform group move. However I get an error when I try to add the Camera to this transform group which is moved.
    Thanks in Advance.
    Mahen.net

    My code is:
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.WindowAdapter;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.geometry.Sphere;
    import javax.swing.Timer;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.loaders.objectfile.ObjectFile;
    import com.sun.j3d.loaders.*;
    public class BouncingBall extends Applet implements ActionListener, KeyListener {
         private Button go = new Button("Go");
         private TransformGroup objTrans;
         private TransformGroup vpTrans;
         private Transform3D trans = new Transform3D();
         private Transform3D trans2 = new Transform3D();
         private Timer timer;
         private float xloc=0.0f;
         private float zloc=0.0f;
         public BranchGroup createSceneGraph(SimpleUniverse su) {
            BranchGroup objRoot = new BranchGroup();
            // lanscape
            TransformGroup tg = new TransformGroup();
            TransformGroup tg1 = new TransformGroup();
            TransformGroup tg2 = new TransformGroup();
            TransformGroup tg3 = new TransformGroup();
            TransformGroup tg4 = new TransformGroup();
            tg.addChild(tg1);
            tg.addChild(tg2);
            tg.addChild(tg3);
            tg.addChild(tg4);
            Transform3D transform1 = new Transform3D();
            Transform3D transform2 = new Transform3D();
            Transform3D transform3 = new Transform3D();
            Transform3D transform4 = new Transform3D();
            transform1.setTranslation(new Vector3f(2.0f,0.0f,0.0f));
            transform2.setTranslation(new Vector3f(-1.5f,0.0f,0.0f));
            transform3.setTranslation(new Vector3f(1.0f,1.0f,-2.0f));
            transform4.setTranslation(new Vector3f(-2.0f,-1.0f,1.0f));
            tg1.setTransform(transform1);
            tg2.setTransform(transform2);
            tg3.setTransform(transform3);
            tg4.setTransform(transform4);
            tg1.addChild(new ColorCube(0.4));
            tg2.addChild(new ColorCube(0.4));
            tg3.addChild(new ColorCube(0.4));
            tg4.addChild(new ColorCube(0.4));
            objRoot.addChild(tg);
            //character
            objTrans = new TransformGroup();
            objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            objRoot.addChild(objTrans);
            objTrans = new TransformGroup();
            objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            Transform3D pos1 = new Transform3D();
            pos1.setTranslation(new Vector3f(0.0f,-0.5f,0.0f));
            objTrans.setTransform(pos1);
            // loading object
            try
                   Scene s = null;
                   ObjectFile f = new ObjectFile ();
                        f.setFlags (ObjectFile.RESIZE | ObjectFile.TRIANGULATE | ObjectFile.STRIPIFY);
                   String s1 = "gun.obj";
                   s = f.load (s1);
                   objTrans.addChild (s.getSceneGroup ());
              catch (java.io.FileNotFoundException ex){
            objRoot.addChild(objTrans);
            // lighting
            BoundingSphere bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
            Color3f light1Color = new Color3f(1.8f, 0.1f, 0.1f);
            Vector3f light1Direction = new Vector3f(4.0f, -7.0f, -12.0f);
            DirectionalLight light1  = new DirectionalLight(light1Color, light1Direction);
            light1.setInfluencingBounds(bounds);
            objRoot.addChild(light1);
            Color3f ambientColor = new Color3f(1.0f, 1.0f, 1.0f);
            //camera
            Vector3f translate = new Vector3f();
            TransformGroup vpTrans = new TransformGroup();         
            vpTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            vpTrans = su.getViewingPlatform().getViewPlatformTransform();
            vpTrans = new TransformGroup();
            vpTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            Transform3D T3D = new Transform3D();     
            T3D.setTranslation(translate);
            translate.set( 0.0f, 0.0f, 3.0f);
            vpTrans.setTransform(T3D);
            return objRoot;
         }

  • Hide and show vi

    Hi,
    I have two VIs. The main vi, and another one (let me say it vi2). Well,
    First in my main VI I open a reference (open block) to vi2 (vi2
    contains a wave graph that I update each x ms from main.vi). Then, main
    VI updates vi2 each x ms, for this reason I must to open vi2 before I
    can update the wave graph inside it. I open vi2 but the user can
    see  it because I open it in hide state. Vi2 remains opened in
    hide state until vi main finish its execution when the user force it
    through his menubar. Vi main has a button that when the user press it,
    it shows vi2, in other words, vi2 changes its state from hide to
    visible by setting the state property to standard (1). When the user
    sees the vi2 he can then hide again it by pressing a button placed in
    vi2. What makes this button is change the state of vi2 from visible
    (state property = 1 standard) to hide (state property = 3) and it
    remains hidden until the user press the button again from main vi.
    Finallly, when the user from main vi wants to see again the wave form
    graph of vi2, he presses the button placed in main vi to see the
    vi2,  but.... it doesn't appears, the vi2 doesn't change its state
    to visible, what happens? What makes this button placed in main vi is
    to change the state of vi2 from hidden to visible by setting state
    property = 1 standard, I don't open reference to vi2 again, I only open
    reference to vi2 once time when I open main vi by the first time and
    then I continuosly hide and set visible vi2 when user press the
    apropiate button.
    Thanks,
    ToNi.

    Hi ToNi
    Could you post either pictures (no *.bmp please) of or better the vis?
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...

  • Make a button hide and show an image

    I want a button to hide and then show an image, basically an on/off switch.  I tried accomplishing this using multipl slides that jump around but even after removing all transitions, you can still tell that the slides are changing instead of just the image appearing and disappearing.  I have seen some posts about advanced actions but it's reading clear as mud.

    Christina,
    If you want a toggle button, that can be done with advanced actions. What did you read already? And which version of Captivate are you using?
    The idea is that:
    You create the image, but set its visibility unchecked in the Properties panel
    You create a user variable, will label it v_visib that has a start value of 0, will be set to 1 when the image is visible
    You create a conditional advanced action, that will check the value of v_visib:
    IF v_visib is equal to 0
        Show Image
         Assign v_visib with 1
    ELSE
        Hide Image
        Assign v_visib with 0
    I blogged several times about toggle buttons:
    http://lilybiri.posterous.com/toggle-shape-buttons      for Captivate 6 only
    http://lilybiri.posterous.com/toggle-button
    Lilybiri

  • How can I click on a button and make a text box appear or disappear

    How can I click on a button and make a text box appear or disappear?
    Thanks ahead of time for your help,
    Doug

    Hi Denes,
    I just thought that the example you pointed the OP to, is far more complex than what I understood he needs. The OP was talking about using a button, which I thought was a very basic and simple case. Your example is much more complicated. If memory serves, the radio group item, at the time (prior to 3.1 fieldset) behaved differently, so you needed to create a new value retrieving function, and then was the need to preserve the items show/hide status upon reloading the page. In short, I thought maybe I didn’t see the complexity in the OP post, but it seems that his requirement was indeed a simple one.
    Regards,
    Arie.

  • 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

  • How to disable and hide the menu items of 'copy From' button of Goods Recei

    hi expert,
    I am new in SAP B1. so please help me.
    Q:How to disable and hide the menu items of 'copy From' button of Goods Receipt PO form?
    Regards
    sanoj

    Hi Sanoj,
    Try This.....
    If pVal.FormType = "143" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_ACTIVATE And pVal.BeforeAction = False Then
                oform = sbo_application.Forms.GetFormByTypeAndCount(pVal.FormType, "1")
                Dim oitem As SAPbouiCOM.Item
                oitem = oform.Items.Item("10000330")
                'To Disable the button
                oitem.Enabled = False
                'To hide the button
                'oitem.Visible = False
            End If
    Thanks
    Shafi
    Edited by: shafi_sunshine on Sep 15, 2011 7:35 AM

  • Keyboard shortcuts: minimize, maximize, show, hide, make visible, unhide, activate oh my!

    Sorry for the long posts, with multiple questions, but I think they are all related.
    1.   I often, accidentally, set a window to Full Screen.  The window fills entire desktop, with the exception of the menu bar.  I want to be able to cascade two or more windows such that I can see both on the desktop.  While still seeing some parts of the desktop.  I'm able to minimize to the dock, by selecting the '-' option with my mouse. 
         a.  What are the keyboard shortcuts for minimize, unminimize window.  Typically in Win  I would Alt-tab, and tab to the window I want to see.  When I Cmd-tab and select, e.g., firefox, in  Mac nothing happens.  It seems the only way to unminimize from the dock is to use the mouse.  Is there a keyboard shortcut?  And is this really 'minimizing the window', 'hiding the window', or something else.
         b.  Does the Mac have the concept of 'saving window size' similar to windows when the minimize option changes to 'minimize to size X'?  'Size X' being less than full screen and more than 'minimized'?  If so, how do I enable this concept?  If not, is there some alternative that Macions typically use to go from full screen to 'Size X' screen?
         c.  Please describe the concept of hide X, unhide All, show all?  And specifically why the 2ndary menu's do not have the complete set included.  For example:  If there is an option to 'hide X', I would expect there to be a 'unhide X'.  X being window, application, all windows, all applications, etc.
         d.  What is the logical relationship between all the 'hide','show', minimize X, etc. features that I am obviously missing?  There seems to be some logic to it but I am oblivious to it.  And thus spend quite a bit of time looking for a window and trying to get it to display on my desktop.  And then once its on my desktop, I spend more time trying to go from 'not-full screen-but-not minimized' and minimized.
    Any help is appreciated.!!1 
    And yes, I have looked through the Mac 101, Switch to Mac tutorials.  They mention how to do some of the functions I mention.  But there is no explanation of the relationship between them/purpose for each.  I'm sure they are not duplicates of each other.  And lastly, it does not fully explain keyboard shortcuts.  e.g., I think I found a keyboard shortcut for 'hide X' but then I didn't find the shortcut for 'un-hide X', etc.

    See  Mac OS X keyboard shortcuts.
    Apple - Support - Switch 101.
    Let's see, now.  Show means, "make visible."  Hide means, "make invisible."  It then follows logically as to what "Show All" and "Hide All" must mean.
    Other differences simply reflect Apple's design for OS X versus Microsoft's design for Windows.
    Usually COMMAND-H hides if the object is visible and un-hides if the object is invisible - a switch.
    I switch between OS X and Windows and Linux all of which have somewhat different UIs, but it's not that hard unless you want to make it so, which is what i think you are doing.

  • How do I fix my left shift key? Any open windows leave and make the desktop visible.

    How do I fix my left shift key? Any open windows leave and make the desktop visible. I have tired to go into system preferences and reset all of the keyboard settings to default but the issue hasn't gone away.

    You are not running as administrator, I think, which may be required and the only way to properly work and register. Also check for compatibility mode settings, UAC and DEP, all of which may require to be adjusted for a legacy app like PS CS2 to run properly. Also turn off Aero and switch to a conventional visual theme. The brush issue may be related to that or is a more generic problem with your graphics card and mouse config, but since you didn't provide any info on that, it will be hard for anyone to advise.
    Mylenium

  • Is there a way to automatically align and make same size of check boxes/ radio-buttons like in the image below?

    I create PDF forms on daily basis for multiple people around but still, I create a table in Word and then manually convert it to PDF. I'm using Acrobat X and then I manually create radio buttons or check boxes in each cell of the table so aligning those buttons or check-boxes in the same line is a problem. I know there would be some solution to this but can anyone guide me to that? Also, making the same size of the radio-buttons of check boxes likewise ? ? ?
    Please see the image above and advise how to align them in the same line and how to make them same size using Acrobat X?
    Your help appreciated.

    You should create these fields using the Place Multiple Fields command, so that they are aligned properly and all the same size. Read about it here:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS8C2DDC1C-C174-4ad1-893F-B14A1C0289B4.htm l
    Read how to align and distribute fields here:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS6D2D2BFC-6F69-4a8b-BDE6-8043D7EE240D.htm l

  • When I try to use the Submit Form button on the Interactive PDF I created (IN Design CS6) I get this message. "There is no value in form field 'Program.' Please put in it before proceeding. What can I do to fix this and make the Submit button work?

    When I try to use the Submit Form button on the Interactive PDF I created (In Design CS6), I get this message:
    There is no value in form field "Program." Please put in it before proceeding.
    How can I fix this and make the Submit Form button work?

    Are you running modified software on your phone?  This error seems to be common if the firmware has been modified and you're trying to restore the phone again. 

Maybe you are looking for