Control mouseover image does not display when contained in an array of clusters.

I have been using system booleans (with some customization) for the ability to impement mouseover animations.  For example (default system booleans):
The mouseover feedback works well with my UI, and for the most part everything is going great.
However, the mouseover image does not load if the the boolean is contained within an array of clusters (a single cluster with the boolean inside or an array of booleans works as expected):
The mouseover animation does work for a single array element in the above case (the one which was most recently clicked), but this behavior isn't desirable and it seems buggy if I were to leave this on my UI as it is.
So I guess I'm just wondering if anybody has encountered this or has any suggested workarounds?  The few that I've thought of so far (maintain a separate array for any set of system boolean controls, check coordinates myself on mouse move event and try to update the proper element in the array, avoid using mouseover animations entirely for this set of controls) aren't all that desirable.  Even though this issue could be considered cosmetic, the UI is very important to me as this code is something shipped to customers.
This is LV 2011 by the way, so if by some chance the behavior in 2012 is correct please let me know (this alone might be reason enough to convert the project up).  If there is a CAR ID for this behavior and an NI employee wishes to share it I would also appreciate that.
Best Regards,  
John Passiak
Solved!
Go to Solution.

Hey Jason,
A reproducing VI would be any VI that contains an array of clusters with a system control boolean inside.  Here's an example:
Single Boolean, Single Cluster, and Array of Booleans all show the proper mouseover image.
Array of Clusters always shows the mouseover effect on the last element which was clicked, but does not show the mouseover effect on other array elements (actually, it seems to be inconsistent--every now and then it does show the mouseover effect on other array elements but it is not at all reliable).
Best Regards,
John Passiak
Attachments:
MouseoverTester.vi ‏9 KB

Similar Messages

  • Image does not display when selected

    Images are not displayed on opening. Progress bar "Reading Photoshop format" runs and fnishes. Layer info is displayed at right. But the image is not shown in the work space.
    (Added) Problem occurs with PSD and DNG (ACR) file types only. JPG files open fine. DNG opens in ACR but the "Open" button has no effect. PSD does not appear at all, when selected.
    Any ideas appreciated.

    Looks like stopping/restarting PS resolved this issue, at least for the moment. I'm quite new to the Mac World, and may have pressed some wrong keys/combinations (?).

  • Image does not display on MacBook Pro (does on PowerBook G4!)

    I created a slide in Keynote on my PowerBook G4 with an image dropped in (a pdf, I can't remember whether it was originally cut and past or dragged and dropped in). When transferring the Keynote presentation to a new macBook Pro (copying via a USB thumb drive), the presentation opens but the image does not display (everything else is OK).
    The weird thing is that the image does show up in the thumbnail in Navigator View. It disappears in Light Table View, and then is gone when I return back to Navigator View. However, when I close and reopen the file, it appears again in the thumbnail.
    When I click on the area where the image should be, the open squares show up around something. If I try to copy this object and past into another application (like Photoshop), I only get a blank image.
    I have managed to get around this by laboriously copying the affected images on my PowerBook into separate pdf files, then transferring those files to my MacBook Pro and dropping them into place. However, I know I will find a missing image at some later date, when I no longer have access to my old PowerBook.
    How to solve this problem?
    P.S. Both machines are running Keynote 4.0.2 and Mac OS 10.5.2.

    Thanks for taking a look!
    The original image was created using Photoshop to cut out an image from a pdf file. Then it was either cut and pasted or dragged into Keynote.
    Here are screenshots of what I get when I open the "droppedimage-17.pict" file (shown in the Show Package Contents window) using QuickTime on both machines. For the PowerBook:
    http://www.cems.umn.edu/download/attachments/Powerbook.png
    For the MacBook Pro:
    http://www.cems.umn.edu/download/attachments/MacBook_Pro.png
    Strangely, the Powerbook version looks like a correct grey-scale image, while the MacBook Pro looks like a B&W image.

  • Image does not display have editing

    I'm wondering if anyone is have this issue. On some of pictures after I make an edit (i.e. crop, spot/patch, etc). the image does not display. If I switch to full screen the updated image displays. When I switch back to the browser and viewer mode the image does not display in the viewer.
    This problem certainly makes editing pictures quite difficult.
    Any help would be great!!!
    Here's my system configuration:
    Aperture 2.1
    Mac Pro Dual Core 2.66Ghz
    5GB RAM
    2 x Nvidia GeForce 7300 Graphics Cards
    4 x 24" monitors.

    Karsten, thank you for your response, but the problem still seems to exist. I rebuilt my entire Aperture library then started to generate new previews. The rebuilt library and new previews work fine, however, again if I make an edit to the image and the apply the change the updated image does not display. If I resize the image in the viewer the image appears.
    This seems to be a very weird problem.

  • RE: my input fields does not display when running the page

    my input fields does not display when running the page
    why is that so?

    Hi,
    Can you send the HTML code for us?
    Afonso

  • After Mozilla upgraded (5 I think) my igoogle homepage does not display when I sign in.

    I upgraded to Mozilla 5, (I think, as there does not seem to be any previous versions when I check), now my personalized igoogle homepage does not display when I sign in. I need to go to options then select igoogle. All was well before. How do I reset without having to completely redo my igoogle page. I do not believe I have the 6.0 version as that is what it says I can upgrade to. I am retired and am only learning.

    Unless you have a version of iPhoto that was 9.0 or later you will not be able to download iPhoto 9.6.1 from the App Store.  To get 9.6.1 you'll need to purchase a copy of the iLife 11 disk from an online retailer like Amazon.com and then go the App Store and download 9.6.1.  Those who had an iPhoto 9.0 or later already installed have been able to get 9.6.1.  But there's been no reports from anyone who bought iLife 11 and went that route so you're at your own risk. 

  • Jpeg image loaded with Loader- loadBytes() does not display when app is deployed on remote server

    I am loading a JPEG  image from the server, using the Loader->loadBytes() and that works when the app is deployed under my local Tomcat server.  When I deploy it on other servers the image is not displayed,  instead of the image I see II*
    On the server side I have java, Spring, BlazeDs and I use RemoteObject on the client.
    The code that loads the image looks like below:
    private function imageLoadResultHandler(event:ResultEvent):void {
        var result:ArrayCollection = event.result as ArrayCollection
        var bytes : ByteArray = result.getItemAt(0) as ByteArray;
        _loader = new Loader();
        _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderCompleteHandler);
        _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loaderFaultHandler);
        _loader.loadBytes(bytes);
    private function loaderCompleteHandler(event:Event):void {
        var loaderInfo:LoaderInfo = event.currentTarget as LoaderInfo;
        var img:Image = new Image();
        img.source = loaderInfo.content;
        myPanel.addChild(img);
    <mx:RemoteObject id="ro" destination="imageLoadService">
         <mx:method name="loadImage" result="imageLoadResultHandler(event)" fault="faultHandler(event)" />
    </mx:RemoteObject>
    Any help with this problem is much appreciated.
    Thank you,
    Lumi Velicanu

    Hi Dmitri,
    Thank you for the prompt reply, your question about the jpeg content was a helpful pointer.
    I solved the problem, it had nothing to do with flex, it was all on the java side. The image was obtained from converting a TIFF to a JPEG, the conversion was failing and the flex loader was receiveing a tiff and it did not know how to display it.
    The java problem was kind of interesting, I'll post it here as an FYI in case anybody cares :
    On my server the first writer returned by ImageIO was an instance of JPEGImageWriter and on the other servers was CLibJPEGImageWriter. And it happens that  only JPEGImageWrite can write the type of TIFF that we are having.
    The fix was to iterate through all the writers and pick the instace of JPEGImageWrite, instead of the first one found.
    Lumi

  • Image does not display on Webi/Information Analyzer report BO XI 4.O

    In Information Analyzer ( Webi ) I am using BO XI 4.0 ramp up version. I have create one report with image on it. I moved the image to image directory on BO server .
    While creating the report I am able to see the image fine. However when I call the report from a hyperlink the image does not get displayed.
    If I go and refresh the data, then the image comes back.
    But I want to be able to see the image without having to refresh the report each time.
    I restarted services and removed cookies and cache from IE broweser and tested with many other machines, but still same problem.
    Can someone please advice..soon..

    Is this a custom application that is viewing the report or is it Infoview or urlreporting?
    If it isn't a custom app, you may be better off posting this question [here|SAP BusinessObjects Web Intelligence; instead.  You may also want to open a case with support for this.

  • Image does not display on my podcasts

    I had tried everything but the image linked to my podcast does not display.
    Here is the link:
    http://www.researchtopractice.net/podcast/feed/bcu.xml
    The feeder is validating, I have the correct sizes but cannot understand why the image does not show up.
    Any help will be appreciated.
    Joao

    There are two different images you need. One for the feed. This is the one that shows up on the main iTunes store page for your podcast. This image does not get added to the individual episodes when it is downloaded.
    To get Album Art work into the individual episode you need to add the image into the ID3 tags BEFORE you upload the MP3 file. See this tutorial on how to do that.
    http://www.podcast411.com/id3tags.html
    Rob @ podCast411

  • Dreamweaver CS4 Live View - background-image does not display

    I'm teaching a basic Dreamweaver CS4 class, and one of my students happened upon a unique problem. 
    Although the students were not required to use LiveView for their assignment, the student noticed that when he clicked the LiveView button to look at his assignment, that the background-image property that he set on the #header DIV does not display.
    I tried duplicating his problem by building a similar site to his, using the exact same Dreamweaver Starter Page he used, but I'm not able to reproduce it the problem. If I define a new site using the files the student sent me, the problem comes back.
    I'm completely stumped. What could possibly be causing the background-image CSS property to stop rendering in Live View?
    Thanks for any help at all!

    Hi
    Check your students css code for invalid or missing mark-up, or linking to the background image. Another possible problem, (occurs on some sites but not all) is to check if the url is enclosed in quotes as these are occasionally required but not always, also check for spaces in file names
    e.g. - background-image: url(../images/yourimage.jpg); should work but occasional requires quotes as in - background-image: url("../images/yourimage.jpg");
    PZ
    www.pziecina.com

  • Bkg image does not display

    A background image shows up in my "container" div in design view (DW CS4), but does not display in preview or Live View.
    What might be preventing the image from displaying?
    Note: bkg colors do display.

    How To get Help Quickly
    http://forums.adobe.com/thread/470404
    Upload the  test page to your web server and post a URL for us to see.  It could be bad image type, a bad path to the file itself or a half-dozen other things.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Video does not display when sending from Final Cut Pro to Motion

    Suddenly, when sending an audio & video sequence to Motion, a new Motion file is created, and all my layers come in properly, but the video does not display.
    The audio plays fine, and Motion clearly know that there are video tracks there, but it does not display them.
    Additionally, when rendering the Motion file back in FCP, it turns in to black video.
    I have previous sequences within the same project that were sent just fine, and are editable properly, but any new ones I try to create just come out black.
    Help, please?

    Do you have Motion mistakenly set to render out with an Alpha channel?
    Double click your Motion clip in the Timeline. Go to Modify > Composite Mode in the menu bar and set the Alpha to "None/Ignore".

  • Content does not display when page first opened

    Hi All;
    I have a contenta are/region which I have divided into multiple tabbed areas. I have two main tabs that divide the content into two major topics. Within each of these main areas I have added 4 to five tabs. One set for example holds a calendar, another tab a news release area and a third a content area for holding multiple folders of a department's documentation. The problem I am encountering is that when I first bring up the page all I see are the tabs and no matter what tab area is exposed the content within it is not displayed. For example, I start with the Calendar tab active (the calendar does not display). I then click on to say the document area, which displays all of its content's correctly. When I return to the calendar tab the calendar is displayed. My question... how can I ensure that the calendar (or any other tabbed area's content is displayed when the user first brings up the page?
    PS. This is a hot topic since I will be demoing my pages to my managers next week in an effort to convince them that Oracle Portal is the way to go.

    When I email the page to our server, the href links are missing.
    You email the page to the server?  What does that mean?
    MaureenHayslett wrote:
    I am using CS3 on Mac OS 10.6. The page previews perfectly in Safari. When I email the page to our server, the href links are missing. For example, the banner doesn't use the correct font, and the background color the the whole page is missing. Please go to http://www.crhcarchives.org/links.html
    All of the other pages on the website look correct. Thank you.
    Look at the source on that page.  There is virtually no styling on it....
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <style type="text/css">
    <!--
    .style16
         {font-size:14px}
    -->
    </style>
    </head>
    There is nothing telling the page which fonts to use, or which colors to use.  Are you sure you have uploaded the correct page?

  • Favicon.ico image does not display consistently for our application,

    Hi,
    We have configured a favicon.ico for our application as below code snippet and referring to the favicon.ico image correctly. The icon file is available in our war file post deployment. The problem is some times it displays correctly and sometimes it does not display correctly.
    <af:outputText value="&lt;link rel='SHORTCUT ICON' href='#{facesContext.externalContext.requestContextPath}/images/favicon.ico'/>" id="favicon" escape="false"/>
    Can anyone point to any issue related to browser caching or application server caching and any possible fix to this intermittent behavior.
    regards,
    Chandra.

    Browser caching might be a problem, but we can't help as it is a browser issue. All I can say is to clear the browser cache and see if the problem can be reproduced. If yes it doesn't look like a browser problem. Then you have to check if you are connection via proxy which might cache images too. Ask your network admin for help then.
    Do you see this problem only with one browser? Have you check other browsers?
    Timo

  • Image does not diplay when using "Pull Down Menu with image"?

    Image not displaying when attaching image to the Parent in the New DHTML Pull down menu list.Displays a blank grey image. Any Ideas?
    Cheers.

    Hello,
    Yes, it seems pretty obvious that you would have to replace all for of them otherwise in that condition the generic one would show up.
    But to spell it out you need to replace in . List Template Current , List Template Current with Sub List Items , List Template Noncurrent , List Template Noncurrent with Sub List Items.
    This is one of those thngs you should have just tried it took me longer to type all this out than it would have taken you to test.
    Carl

Maybe you are looking for