Show/Hide controls?

I'm building a concert of all my "go to" patches...a bunch are B3 kinda things and a bunch are everything else (pianos, synths, splits, etc). What I want to do is have the B3 drawbars visible and working for the B3 patches, but not visible on the other patches that don't use a B3.
Again, the idea is that this would be all in the same concert.
Is this even possible? Some trickery?
Thanks.

I've tried it a couple of times and this doesn't seem to be the case with the drawbar controls.
I added the group of drawbars in layout and assigned each drawbar to the appropriate upper manual drawbar inside EVB3 in edit mode. When I switch to Perform or Fullscreen, the drawbars move to the correct setting when I go to the B3 patch, but when I switch to a non-B3 patch (and not assigned), the drawbars change to full (8) and are still completely visible and not grayed out.
Something else I noticed that's odd about Mainstage, in general, it doesn't really want to show the value of something onscreen. Meaning, I'd like something visible to show me if the Leslie is in choral or fast mode, but it doesn't report the change...if you know what I mean. It just wants to duplicate hardware controls instead of having the ability to show values on the screen. Does that make sense?
Anyway, it would be great if Mainstage had that ability.

Similar Messages

  • Hide/Show UI Controls by Enterprise/Application Roles

    How i can show/Hide A UI Control by the Enterprise/Application Roles??
    is there any way to do this?
    My JDevdeveloper is 11.1.2.3

    Use the rendered/visible/disabled attribute of your UI components.
    rendered="#{securityContext.userInRole[’ADMIN’]}"

  • My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows).  The key behaves the same for the laptop keyboard and for an external Apple keyboard?  This just started in last week after 6 months of use

    My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows). 
    The left shift key behaves the same on the laptop keyboard and on an external Apple keyboard. 
    This just started in last week after 6 months of use.  The right shift key and other keys on the keyboard all appear to work correctly.
    Suggestions greatly appreciated.

    I have a solution to this issue now after a discussion with Apple Support.  Some where in the last few weeks, there was a change in the key that would do a Show Desktop under the Mission Control settings in the System Preferences.  Even though the key sequence that was shown for the Show Desktop setting did not include the Left SHift key, by changing this first to having no key sequence and applying that and then changing it back to the F11 key, the Left SHift key issue that I was having has cleared up.
    A second issue that was uncovered was that the SSD had some issues (uncovered when I ran Disk Utility using the Repair Disk key).  I had to restart and use the Disk Utility through the Command R sequence to get to the stand alone Disk Utility.  The SSD appears to be running better as a result as well.
    Hope that this is of use to someone else in the future.

  • How to Show/hide the UI Elements in a WD Application

    Hi,
    I need to show/hide and control other properties such as required, readonly etc from UI.
    Can somebody please tell me how I can do that as I am able to save and retrieve the fields from another UI, now the need is to apply them once the Application starts.
    Thanks,
    Rachit

    Hi,
    To show/hide UI elements follow below procedure.
    1) define a attribute(VISIBLE in this case) element in the context of type WDUI_VISIBILITY
    2) in the UI element properties(Visible) bind the above attribute with the element you want to make visible/Hide.
    3) call below method to hide the UI element
        wd_context->set_attribute(
         EXPORTING
           name = 'VISIBLE'
           value = cl_wd_uielement=>e_visible-none ).
    4)     wd_context->set_attribute(
         EXPORTING
           name = 'VISIBLE'
           value = cl_wd_uielement=>e_visible-visible ).  for display.
    You have to call these method at the right spot.
    Thanks,
    Sree.
    Edited by: t sree on Oct 16, 2008 3:36 AM

  • Show/Hide a column in a Table region

    I have search page which queries the data and displays the records in a table region. We need to have an option to show or hide a non-database column at the end of the each row in the table. If the checkbox is selected, the last column should appear and if checkbox is deselected it should get disappeared.
    I have used a transient attribute in the VO and using that transient attribute trying to show the text field when the checkbox is selected. For ex, if the search returns 6 rows - if you select the checkbox of the first row , the last column "CTS" gets displayed without any issues but if you select the other rows (without checking the first row), the CTS column is not displayed.
    The column is getting displayed only IF you select the checkbox of the first row and try it other rows. If you try to select the checkbox of other rows without selecting the 1st row, it doesnt show the CTS column.
    AM has the PPR event
    =============
    public void CheckOnClick(String v_chkBox,String SalesContact,Boolean executeQuery)
    System.out.println("Enters Checkbox event()");
    USSContactMainVOImpl pVO= getUSSContactMainVO1();
    Row poRow[]=pVO.getFilteredRows("Chkbox","Y"); // get all the selected rows
    for(int i=0;i<poRow.length;i++ )
    Row rowi=poRow;
    System.out.println("Value:" + rowi.getAttribute("Chkbox") );
    rowi.setAttribute("CTSEngineer_TR",Boolean.TRUE); // transient attr
    //end of CheckOnClick()

    I just referred to the Dev Guide and understand that we can use the identifier of the PPR event source row (Page 262) but still the issue persists.
    String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    I have a rawtext as the first column( its just a dummy column since the PPR event is not getting fired if the checkbox is the 1st control/column) and the 2nd column is the check box which has a PPR event. The PPR event fires whenever the check box is selected or deselected but surprising the text field gets editable only if the 1st row is clicked.
    Changed code is as always - not sure why the table shows/hides the text column only if the 1st column is selected. Will appreciate any help.
    PFR:
    ===
    if ("OnSelect".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    System.out.println("The AM name is "+am);
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    String str1 = pageContext.getParameter("Check_Box");
    String v_SalesContact = pageContext.getParameter("SalesContact_qry");
    //1401
    String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    Serializable[] parameters = {str1,v_SalesContact,rowReference,executeQuery };//1401
    Class[] paramTypes = { String.class,String.class,String.class,Boolean.class };//1401
    am.invokeMethod("CheckOnClick",parameters,paramTypes);
    AM(PPR Event)
    ==========
    public void CheckOnClick(String v_chkBox,String SalesContact,String rowReference,Boolean executeQuery)
    OARow rowx = (OARow)findRowByRef(rowReference);
    if (rowx !=null){
    System.out.println("row ref");
    System.out.println("reo fref"+ rowx.getAttribute("CTSEngineer_TR") );
    rowx.setAttribute("CTSEngineer_TR",Boolean.TRUE);
    Edited by: MyOAF on Jan 14, 2010 6:25 AM
    Edited by: MyOAF on Jan 14, 2010 6:26 AM

  • Show Hide transient attribute making row dirty

    Hi All
    I am using an advanced table where one of the columns(Description) is shown in detail region. To implement detail region, we need a transient attribute on the VO. I was able to get everything working. But I have the following problem.
    When the user clicks Add Rows, new rows are created for user to enter information. If the user does not make any changes and clicks Apply, no transactions are committed(which is working as expected). But when the user clicks on "Show" for one of these rows and does not enter information on any of the fields for that row, the system is throwing error on some of the mandatory fields. This is because the framework is identifying them to be dirty(Since clicking show changes the value of transient attribute on VO).
    I tried the following option to get around it, but it did not work.
    * When Show/Hide is clicked, capture that event and get the row that was clicked. Perform row.setNewRowState(row.STATUS_INITIALIZED) on that row to let system know that the row is not dirty. The problem here is that when control comes to this part of the code(be it in Controller or AM), the row status is STATUS_INITIALIZED. It becomes dirty after the Show action is processed in ProcessFormRequest(I think so..)
    To get around the issue, I had to remove the Mandatory flag on some of the fields, and implement the same manually. Also, just before committing all changes, I had to loop through all rows and see those that do not have any information entered but are still dirty. Perform row.setNewRowState(row.STATUS_INITIALIZED) on them before committing.
    Can any of you tell me a better way other than how I implemented it? I want to keep the mandatory flag on the field set(VO is based on a EO) and nto remove it. The error for no value entered should not be triggered by Show/Hide being clicked. I hope I was clear enough.
    Thanks
    Kumar
    Edited by: kvsankar on Feb 5, 2013 11:20 AM

    I did that. But I wanted the Server side validations to fire if the row was touched by the user before Submit as this is a middle page in set of pages implemented via train. I think I found the solution.
    I overrode the set method for DetailAttribute item on the VO and added the logic to set the row to STATUS_INITIALIZED if no other attribute was entered and it worked like a charm.
    Thanks
    Kumar

  • Show/hide pointer issue

    Show pointer option is not working as it used to be with last 2 versions of photoshop touch for iphone on iphone 6.
    While making a selection with lasso tool with "show pointer on" I can not carry on selection step by step, it works a few steps properly then I had to wait for a while so that it can go further step.

    I apologize for the confusion. Let me try to start over, following the instructions you are asking to provide. The computer that has Photoshop installed is from school, so I will try the best I can giving you detailed specs. For what I know, It is a PC running Windows 7 64bit, but I do not know the amount of RAM as I do not have permission to access the control panel or any of its system settings. The version of Photoshop is CS6 13.0 Extended, and its performance preferences re the following...
    Available Ram: 34827MB
    IdealRange: 1884-2467MB
    Allow Photoshop to use: 2056MB
    HardDrive: 835GB
    as for the error, there is no error. I might of not been specific, but I am not stupid not to include the type of error if there was any...
    Other things like the grand total ram, video card, and video ram are all accessible by the administrator only.
    the file I am working on, is an imported 3ds Max file. I was trying to use Photoshop's 3D painting tool, and from what I understand, it is possible to hide polygons by selecting an area you would like to keep, and what is not selected gets hidden. This is supposed to be good for painting areas that are behind parts of the mesh that is in the way. From the instruction, you are suppose to select the area that you want to keep, and then choose 3d->Show/Hide Polygons->Within Selection. This part I was able to do. Once I was happy with what I needed to paint, I then selected 3d->Show/Hide Polygons-> invert. This allowed me to continue painting other hard areas of the mesh by revealing what was hidden and hides what is visible. Then, when I was ready to reveal the entire mesh back, I was thinking that I should be able to do this by clicking on 3d->Show/Hide Polygon->Reveal All. However, this only reverts the visibility back the other way around as if I clicked on revert.
    So what I was wondering is if this is how the 3d reveal all tool works or is this a bug?
    I hope this clear things up, if not, please let me know.

  • Show/hide layer bug PS 12.01.x64?

    I know that you OPT-Cllick on the eyeball to show or hide multiple layers in PS on the Mac. I could hide all by OPT-clicking on one eyeball. But OPT-Clicking it again did not show all the hidden layers again. It did nothing. Even after several reboots.I had to manually turn on all the layers.
    But then I CONTROL-Clicked on the eyeball to bring up the context menu, which said "Show/Hide all layers" and somehow that woke up the show/hide function when OPT-Clicking on an eyeball. So now everything works normally. The FNCT-Click (or right mouse button) on the eyeball has become a switch to turn on the OPT-Click behavior.
    Anyone else notice this?
    Thanks
    Stan
    MacBookPro6,2 Intel Core i7o OS 10.6.4

    The second Option+Eyeball click is a not a "show hidden layers" command, it goes to the previous state of visible layers... so if you opt+eyeball+click to just see one layer, then for whatever reason make another layer visible, or hide that layer and make another visible, or if you manually hid all but one layer, then that second opt+eyeball+click will appear not to work (if your expectation is to have all the layers become visible)
    Kind of a convoluted answer there!  But try that out and see if that is what you are experiencing.
    I think at one point, quite a few versions ago, the opt+eyeball+click was a "show this layer/show all hidden layers" command. But Adobe changed the behavior because the second opt+click would make every layer visible, including the layers you had intentionally hidden.

  • Getting Stale Data error in show/hide of Advance table

    Hi,
    Am using hide/show in advance table.If open the hide/show in 1st row then it shows correct data ,if i click the next row's show hide then its shows the same result as ist row, and i try to use show/hide link more thann three times then it throws stale data error given below.
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example).
    Cause:
    The record with primary key values {1400} could not be found in view object MisForecastHeadOfiiceAM.InnerTableVO_OuterInnerVL_InnerTableVO.
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    This problem doen't exsist when i deplo it to the server.
    But recently i marked if open a show/hide link of a row and add then add another row to the table and save.Then the same problem reflects in the instance also.
    What may be the possible cause.
    Thanks

    if i click the next row's show hide then its shows the same result as ist row, and i try to use show/hide link more thann three times then it throws stale data error given below.
    >>> Seems like your VO linking is not proper. Does your VO have primary keys defined? Do you have any custom code on these VO?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Photoshop CS6 Show/Hide Polygons issue

    Hi. I am doing an assignment for class, using Photoshop CS6, and I am having problems with the show/hide polygons feature. After hiding the polygons of the unselected area, I am able to reveal the entire object by choosing "Reveal All". However, if I ever need to invert the other polygons, by choosing 'Invert Visible", and then want to reveal the entire object again, all it does is inverts it back the other way around. Is this a bug, or is this how it works?

    I apologize for the confusion. Let me try to start over, following the instructions you are asking to provide. The computer that has Photoshop installed is from school, so I will try the best I can giving you detailed specs. For what I know, It is a PC running Windows 7 64bit, but I do not know the amount of RAM as I do not have permission to access the control panel or any of its system settings. The version of Photoshop is CS6 13.0 Extended, and its performance preferences re the following...
    Available Ram: 34827MB
    IdealRange: 1884-2467MB
    Allow Photoshop to use: 2056MB
    HardDrive: 835GB
    as for the error, there is no error. I might of not been specific, but I am not stupid not to include the type of error if there was any...
    Other things like the grand total ram, video card, and video ram are all accessible by the administrator only.
    the file I am working on, is an imported 3ds Max file. I was trying to use Photoshop's 3D painting tool, and from what I understand, it is possible to hide polygons by selecting an area you would like to keep, and what is not selected gets hidden. This is supposed to be good for painting areas that are behind parts of the mesh that is in the way. From the instruction, you are suppose to select the area that you want to keep, and then choose 3d->Show/Hide Polygons->Within Selection. This part I was able to do. Once I was happy with what I needed to paint, I then selected 3d->Show/Hide Polygons-> invert. This allowed me to continue painting other hard areas of the mesh by revealing what was hidden and hides what is visible. Then, when I was ready to reveal the entire mesh back, I was thinking that I should be able to do this by clicking on 3d->Show/Hide Polygon->Reveal All. However, this only reverts the visibility back the other way around as if I clicked on revert.
    So what I was wondering is if this is how the 3d reveal all tool works or is this a bug?
    I hope this clear things up, if not, please let me know.

  • Need to Hide Controls when FLV starts playing

    I am using FLVPlayer_Progressive.swf
    and Clear_Skin_1.swf to load and auto-play FLV video on a
    website.
    It works great but the video controls are visible on top of
    the video.
    I want to hide the controls!
    I spent several hours to find a way how to hide the controls
    (Play/Stop) when video starts playing.
    Anyone knows how to do this?

    I have the same desire to have video controls hidden unless
    mouse activity. As robertvo stated, FLVPlayer_Progressive.swf with
    any of the Clear_Skin_*.swf skins, shows video controls when movie
    starts. I am embedding player in html and have set skinAutoHide in
    flashvars parameter as follows but it has no affect:
    <param name="FlashVars"
    value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=${param.videoClip}&autoPla y=true&autoRewind=false&skinAutoHide=true"
    />
    Jeff

  • Show Transform Controls. KEYBOARD SHORTCUT PLEASE ANYONE!!!

    I use Photoshop CS5/3 for Drawing and creative art. Hense I measure up images using the awesome 'Show Transform Control' Option Command, whilst in the Move Tool. But im SICK of having to CHECK AND UNCHECK the box. Please somebody tell me where I can find a Keybaord Short Cut Option in the Keybaord Short Cut and Menus Section.
    Thank you.

    Ive kind of answered my own question.
    Keep the 'Show Transform Control' box checked all the time. When 'Show Transform Control' BOUNDING BOX starts getting on your nerves, press: Ctrl + H to HIDE the slections on screen! Dont forget to press Cntrl H to get it back when you switch to other tools.
    Hopes this helps speed the job up.
    regards

  • Radio Button  javascript onclick  show hide textbox

    Currently, if the radio button is clicked then text box is
    shown else if radio button 2 is clicked then textbox is invisible.
    (only one textbox being shown or being hidden)
    I wish to have 2 text boxes
    If radio button 1 is clicked then textbox1 is visible
    If radio button 2 is clicked then textbox2 is visible.
    What changes do I have to do in my code for this to work?
    feel free to test this.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <script type="text/javascript">
    function hide() {
    var div_ref = document.all("id_div");
    div_ref.style.visibility = "hidden";
    function show() {
    var div_ref = document.all("id_div");
    div_ref.style.visibility = "visible";
    </script>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    </head>
    <body>
    <tr>
    <td>
    Select Device Type <BR>
    </td>
    <td style="width:200">
    <input type="Radio" name="DeviceGroup"
    value="Radiobutton1" onclick="show();" checked="checked">Radio
    button 1
    <input type="Radio" name="DeviceGroup"
    value="Radiobutton2" onclick="hide();" unchecked>Radio button 1
    </td>
    <td>
    <div id=id_div style="visibility:hidden;">
    Show Textbox1
    <input type="Text" name="Textbox1">
    </div>
    </td>
    </tr>
    </body>
    </html>
    Thanks

    thanks
    YES
    i will be submitting data to a field in the database.
    First the vlaue of the radio Button
    For example if the first radio button
    then the value of the first radio button value =1
    goes to the field in the database
    also
    the text box that will show. will have data entered in the
    tesx box and the value will be submitted
    to a field.
    thanks
    shall i still use your code????
    thanks
    also, instead of having 2 javascripts controlling the show
    hide, just join them and assume that at each click the div is
    visible.
    the first part of the if statement in the js just makes sure
    the div's display is none. then it displays the one you are
    calling.
    the else allows you to close the divs without having any
    open.
    i'm doing this from home, so i cant really test it, but, it
    looks like it should work.
    Attach Code

  • Issue while readnig child records of Advanced Table after show/hide event.

    Hi All,
    As suggested in OAF dev guide, I used below piece of code to get control on Child items for selected Parent
    -- code Starts
    // get a handle to inner table
    OATableBean innerTable =
    (OATableBean)webBean.findChildRecursive("InnerTableBean");
    // create an enumerator
    OAInnerDataObjectEnumerator enum =
    new OAInnerDataObjectEnumerator(pageContext, innerTable);
    while (enum.hasMoreElements())
    RowSet innerRowSet = (RowSet) enum.nextElement();
    // get all rows
    Row []rowsInRange = innerRowSet.getAllRowsInRange();
    for (int i = 0; i < rowsInRange.length; i++)
    Row nextRow = (Row) rowsInRange;
    -- code Ends
    The above piece of code works when I don’t select show/hide link of Adv table and select custom ‘Update Parent/Child’ button that is placed at header(parent) level,
    upon btn event it returns all the rows of parent and works fine. But when I select show/hide link and then select ‘Update Parent/Child’ button then only it return no of Child rows displayed (fetched) on page...
    For example, If I have 100 child records of a set and only 10 child rows are displayed at a time on child region , then above code only returns 10 records,
    Ideally it suppose to return all 100 values.
    Can someone please help on this to understand why it only return 10 records not all 100 after selecting Hide show region ? and how can I fix this issue.
    Thanks
    Anand

    Hi,
    Use the VO attached to the inner table and use VO.fetchedRowCount instead of rowsInRange.length in the for loop.
    int rowcount = vo.fetchedRowCount();
    i.e. for (int i = 0; i < rowcount ; i++)
    Thanks,
    Kumar

  • Interactive PDF show/hide button not working properly

    I could use some help. I'm creating an interactive pdf using show hide buttons. A button is set to hidden and a second button controls it's visible on mouse enter and mouse exit. Sometimes these buttons which are set to visible turn to invisible in the general/form field propery window and stop working. I've tried replacing the buttons with new ones, but this hasn't helped. Is this a bug or do you think the document is corrupt. This is a large prototype file which has to be shown to a client and rebuilding it is not a welcome thought.
    Is there a way to program this using java to create this function? (I'm a Java novice.)
    Thanks

    HI PAUL, WE HAVE HAD THE SAME PROBLEM. SO, IF YOUR USING INDESIGN CS2 OR 3 WE HAVE FOUND THAT BY MAKING A NEW BUTTON WITH ALL THE ACTIONS YOU WANT IN A NEW DOCUMENT ON THE MASTER PAGE AND THEN COPYING AND PASTING THE NEW BUTTON INTO YOUR ORIGINAL FILE ONTO THE PAGE MASTER THIS USUALLY SOLVES THE PROBLEM.

Maybe you are looking for