Custom picture ring: disabling the popup menu

I have custom picture ring controls -classic ones- and they work fine when clicking the increment and decrement arrows, however clicking anywhere else on the picture will cause a small popup to appear -like the ring menu control- which shows all pictures. I'd like to disable this during runtime; how to achieve?
 Im on Labview 8.6
Message Edited by _Faust on 03-22-2010 08:15 AM
Solved!
Go to Solution.

Hi Faust,
it's just a picture ring with a decoration on top, but here you go...
I only set the inner area transparent and left the border of the decoration in black so you can actually see the decoration... 
Message Edited by GerdW on 03-23-2010 12:15 AM
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome
Attachments:
HiddenRing.vi ‏5 KB

Similar Messages

  • In Firefox v4.0.1, custom toolbars disappear from the toolbar menu when I open a "New Window".

    1.
    I created a new toolbar in Customize... / Add New Toolbar. It's on the list of toolbars and opens up '''most times''' I start Firefox, but not ''always''. I have tested it and it is completely random.
    2.
    Same type of problem as 1., but '''''everytime''''' I use the 'New Window' feature the custom toolbar disappears from the toolbar menu and if I need to use it, I have to '''save all tabs as bookmark''' then close and reopen FireFox so I get my original window [where the toolbar shows up]. AARRRGHH.
    I've been using FF for 7 years now, so I know enough to rule out corrupted localstore.rdf, new or updated add-ons (I could be wrong though, as I often am...).
    Has this come up with other users? Am I being cursed? [lol] any help would be appreciated.

    cor-el,
    Sorry it took so long to get back to you.
    You know, you're right. I should try everything, no matter how smart I think I am!
    It's been 3 days since I deleted the localstore.rdf file and so far so good.
    Thanxs for the help

  • Where is the Popup Menu in ACR 9?

    After installing ACR 9, I don't see the Popup Menu on top of the Firmstrip. All I see are the "Select All" and "Synchronize...". Right clicking on the firmstrip is not doing anything.
    Thank you.

    3js@adobe wrote:
    Nothing like you said on the menu bar.
    Right you are using CS6. Sorry.

  • Blocking popup windows even when disabling the popup blocker

    For quite some time now, Firefox has been blocking essential popup windows on my computer. It's not just those annoying ones, even those when I am trying to write an email and similar things. I have disabled the popup blocker and it does not change anything at all. It does not alert me that it has blocked anything either, it is simply as if I never clicked anything in the first place. I have tried adding exceptions to my popup blocker, and this does not work either. This is really frustrating and is interfering with my daily use of firefox, and forces me to use crappy explorer which does not block things. What can I do?

    Hi Sachin
    Thank you so much for the reply.
    About your request, the codes that I used are:
    HTML for the PopUp:
    <SCRIPT LANGUAGE="JavaScript">
    function popUp(URL) {
    var iMyWidth;
    var iMyHeight;
    //half the screen width minus half the new window width (plus 5 pixel borders).
    iMyWidth = (window.screen.width/2) - (250 + 10);
    //half the screen height minus half the new window height (plus title and status bars).
    iMyHeight = (window.screen.height/2) - (225 + 50);
    //Open the window.
    var win2 = window.open("http://xarao.businesscatalyst.com/caipiroska.html","Window2","status=no,height=450,width=500,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
    win2.focus();
    </SCRIPT>
    For the Link:
    javascript:popUp('http://xarao.businesscatalyst.com/caipiroska.html')
    Of course for all the different links in the page I've changed the http of each image in both codes.
    http://xarao.businesscatalyst.com/cocktails.html
    Thank you once more.
    Best regards,
    Augusto

  • How to disable the context menu

    Hi folks,
    we have an application running in EP. We want to disable the context menu (right click hand). Any help is welcome.

    Hi!
    I have the same problem because we want to run WDA applications in th internet and there it is "not allowed" to "overwrite" the user's normal browser context menu.
    Additionally we are interested in how to disable the F1 and Ctrl.-F1 help features for the whole WDA application. We do not want to present technical details in the internet.
    Any help very welcome!!!!
    Regards,
    Volker

  • Disable the black menu in iBooks

    Hi!
    Im goding to use an iPad as a info board, kind of.
    I know about the guided access but the problem is i would like to disable the iBooks menu, completely. I hate that gray area that shows when i draw on the screen where to disable and the user is not allowed to leave the book. Need an alternative..
    So, is it possible to disable the top black menu in iBooks (the info is shown via a book made in iBooks author)? Or is there another iba-reader?
    Thanks a lot!

    Perhaps you were asking about a kiosk mode?
    See How to Setup Kiosk Mode & Lock Your iPad to Just One App ...

  • How to change the selection background color of the selected item in the popup menu of the choice box ?

    How to change the selection background color of the selected item in the popup menu of the choice box ?
    By defaut, the selection background color likes "blue", but if I want it to be "yellow" for example, how should I do ?
    Thanks

    The id is applied by (I think) the skin class of the ChoiceBox. You don't need to define it.
    You have to apply the css in an external style sheet. You can apply the external style sheet to any parent of your choice box, or to the scene (the most usual way to do it).
    Example:
    import java.util.ArrayList;
    import java.util.List;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class ChoiceBoxTest extends Application {
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
        final ChoiceBox<String> choiceBox = new ChoiceBox<>();
        List<String> tempResult = new ArrayList<String>();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        choiceBox.getItems().setAll(tempResult);
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();   
      public static void main(String[] args) {
        launch(args);
    choiceBox.css:
    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
    -fx-background-color: yellow ;
    #choice-box-menu-item .label {
    -fx-text-fill: black ;
    Message was edited by: James_D

  • ACR and the Custom Settings option on the flyout menu...

    I am currently running the trial of CS4 to see if its worthy of my hard earned cash. I normally run CS3 and an old version of ACR (4.4.1) specifically for the reason that I can mass process a group of images by using the Custom Settings option in the flyout menu. (Select a file, adjust it, export it, select another or 10 from the same group, hit Custom Settings, and viola, all now have the same adjustments)
    Every ACR 'update' since that one took this option away from me.
    So, here's my quandary... Keep CS3 (and my hard earned $'s) using the old ACR... or figure out how to replace the quick adjustment options I had in CS3 with the New-and-Ever-So-Wonderful CS4...
    Any ideas?
    Thanks in advance!
    Dan

    You can open hundreds of files in ACR, slect and adjust the first one, choose sunchronize and apply the adjustment to all open files.  Try looking at the tutorials on AdobeTV etc, and
    here's some essential reading for you [CLICK HERE] .
    PS—I have no stake in whether you upgrade or not.

  • Can one disable the contextual menu triggered by a control+click?

    Folks,
    As stated here:
    http://discussions.apple.com/thread.jspa?threadID=1520841
    Is there any way to disable the contextual menu triggered by a control+click? I'm using Firefox with a web application and I would like to be able to select non-contiguous rows in a table. This is done by selecting records while holding the control key.
    Any help is appreciated.
    -y

    yc115 wrote:
    Folks,
    As stated here:
    http://discussions.apple.com/thread.jspa?threadID=1520841
    Is there any way to disable the contextual menu triggered by a control+click? I'm using Firefox with a web application and I would like to be able to select non-contiguous rows in a table. This is done by selecting records while holding the control key.
    Any help is appreciated.
    -y
    I regularly use Firefox in order to select and download multiple items. I use the Cmd key to select a group by dragging the mouse over them with the left button down, and then holding down Cmd key and using the left mouse button, I can then select additional elements, only one-at-a-time, but not a second group.

  • Disable the popup stating parental controls blocked the following sites

    ON OS X 10.9 with parental controls enabled when a site is blocked Firefox throws up a popup stating what sites were blocked. I would like to stop this from happening, as in our environment we bloc Facebook, twitter, and other sites, so when I go to CNN firefox pops up saying a bunch of sites have been blocked and to try allow them. This popup is awful and needs to be removed...

    I haven't used this feature...
    Is there an add-on in Firefox that you can configure? You can check on the Add-ons page. Either:
    * Command+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions.
    ''If there is an extension related to this function:'' check for an Options button to see whether you can set it to silent operation.
    Next, in the left column, click Plugins.
    ''If there is a plugin related to this function:'' you could try setting it to "Never Activate" although this might completely disable the feature... Usually configuration for a plugin is done externally to Firefox.
    If there are no add-ons related to this feature, check whether you can modify the behavior in the parental control software itself.

  • Is there any way to disable the popup message I get when I print to a PDF?

    When I print to a pdf by selecting the Adobe PDF Converter as my printer, I always get a popup in my tray "Your PDF file 'document name' has been created".
    This is annoying when I printing a bunch of different documents at a time.  I know the PDF has been created because it opens up, so why the popup?
    HOW DO I DISABLE THIS POPUP???
    Help!!

    If you're talking about the balloon tip that appears in the tray area, I don't know of a way to disable it for just Acrobat, but you can for all programs by modifying the registry: http://support.microsoft.com/kb/307729

  • How do I add the pictures folder to the go menu in 10.8.4?

    I know I can put the folder in the dock, but I'd rather have access to it through the "go" menu. Is that possible?

    No.
    But clicking on "Home" will open your User account folder and Pictures folder is just another click away. You can also drag it to the Finder sidebar menu to access it from any Finder window.

  • Can we disable the default menu groups/items in Illustrator?

    Hi all..!!
    I was wondering whether we can disable/enable any menu item/group in Illustrator? I am working on Illustrator CS4, 5 on windows. To be more specific, can we disable the kSaveMenuGroup, so that the save options appear disabled..?? I tried using the methods described in AIMenuSuite structure reference. But, this only disabled the pre-defined groups added by the plugins.. Any help would be appreciated..
    Thanks...!!

    You could probably set the document state to not modified. But you'd have to be pretty diligent about it, since every time a change is made you'll need to reset the state. And the user would still be able to Save As...

  • Disabling the Indesign Menu items

    Hi all,
    i have dialog based plugin , where i have a button(DisableMenu). Now when i click the button i want to disable the File->new->book... menu item. From the dialog observer class  how to disable the menu item?
    Thanks
    Sakthi

    Hi Dirk,
       I just went through the example. Sorry,  I am not able to understand what that example does ? Are there any notes what the program does?
      How to get all  the menu ID's .Is there any file where the Indesign Menu ID's are defined?
    Thanks
    Sakthi

  • How can I disable the alt-menu shortcuts

    I'd like to disable the menu-key shortcuts (alt+h, alt+f, alt+b, etc).
    They are interfering with vimperator. How can I turn them off?

    I don't think that you can disable those shortcuts.
    You may be able to change the modifier that is used.
    *http://kb.mozillazine.org/ui.key.chromeAccess
    *http://kb.mozillazine.org/ui.key.contentAccess

Maybe you are looking for