Bug? - PSP LED Moves on FP when Binding Change Occurs

[LabVIEW 2010]
When I update the binding on the control the PSP LED moves. This is annoying
Cheers
-JG
Unable to display content. Adobe Flash is required.
Certified LabVIEW Architect * LabVIEW Champion

This was reported to R&D (CAR ID # 296216) for further investigation. I did try saving the VI before the variable to which the control was bound was changed, but the same behavior occurred.
Thanks for the feedback!
-Sean N
Applications Engineering Specialist - Semiconductor Test
National Instruments

Similar Messages

  • Create a delay when a change occurs

    Hallo ,
    I would like to know how a delay can be created when i change the value of a pre defined control . The range control is a prefedined option that allows me to change the sensitivity . since it takes few seconds for the new sensitivity to be set i would like to create a delay when this value is changed . Kindly help me on this .
    thanks and best regards,
    Attachments:
    delay.png ‏23 KB

    Thanks a lot for your reply .I have implemented what you said.  Unfortunately my hardware is facing some issues and i cannot test it right now.
    Hope it works .
    Thanks once again .
    Best regards
    Attachments:
    delay2.png ‏22 KB

  • Move an image when mouseDragged event occurs

    I have a JFrame with an image in it.Now when the user press and hold the mouse button(that is when the mouseDragged event occurs)on the image anywhere I want to make the image as movable.
    how should I do that , i am not getting any ideas.This is important , please let me know how to do that.
    Sample code will be very helpful.
    Thank you

    Are you displaying the image in Applet....
    You can use something like this...
    void panel_mouseDragged(MouseEvent e) {
    Container c = this.getParent();
    if (c instanceof JViewport) {
    JViewport jv = (JViewport) c;
    Point p = jv.getViewPosition();
    int newX = p.x - (e.getX()- m_XDifference);
    int newY = p.y - (e.getY()- m_YDifference);
    int maxX = this.getWidth() - jv.getWidth();
    int maxY = this.getHeight() - jv.getHeight();
    if (newX < 0)
    newX = 0;
    if (newX > maxX)
    newX = maxX;
    if (newY < 0)
    newY = 0;
    if (newY > maxY)
    newY = maxY;
    jv.setViewPosition(new Point(newX, newY));
    void panel_mousePressed(MouseEvent e) {
    setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
    m_XDifference = e.getX();
    m_YDifference = e.getY();
    void panel_mouseReleased(MouseEvent e) {
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    }

  • Active Sync running when a change occurs on the target resource

    Does anyone have any insight on if I can configure an Active Sync to run when a target resource attribute changes? In the docs I only see manual running and scheduled running.
    Thanks
    Edited by: robspierre19 on Jan 25, 2008 12:35 PM

    Hello.
    Keep in mind that Sun IdM connects to resources via agent-less, over-the-wires connection. As such, there's no agent or software running on the managed system to "alert" IdM that a native change was made (e.g. a target resource attribute change).
    ActiveSync is in most cases a form of polling -- it periodically checks for native changes. How it checks depends on the resource. In some cases, it checks change logs (LDAP), in some cases it checks a last-modified flag (e.g. DB table), in some cases it looks for an HRMD_A message (SAP HR), etc.
    The Manual and Scheduled (Automatic) is how you want the ActiveSync process to start -- e.g. automatically start when IdM starts (Application Server is booted) or start only when you manually select it to start. The polling frequency is configurable for every ActiveSync adapter in the ActiveSync Wizard (Resources tab).
    Does that make more sense?

  • Markers on clips don't move with project when switching media drives

    Here's an odd one. I'm editing a project in Premiere Pro CS6 and in order to avoid carrying drives back and forth between two editing locations, I cloned the footage drive and have one duplicate drive in each location. I'll call them location A and B.
    I have no problem relinking clips when I move back and forth from location to location. That's all working great, as expected.
    When I am reviewing clips at edit location A, I've been placing a marker on the hero moments to make them easier to find later when editing. The strange (or perhaps perfectly normal) thing is that when I move to edit location B and relink the clips, all of my markers that I made at location A are gone.
    The same thing happens when creating markers on clips at location B. When I move to location A, the markers made at location A are there, but the new ones added at B are gone... until I return to location B.
    In other words, it seems like markers are not saved as part of the project, but are saved within each clip file. If that's true, what I'm experiencing would make sense. Even though I'm relinking the clips when I change edit locations, the markers are part of the footage files on each of my duplicate drives and do not move with me when I change locations.
    I just wanted to confirm this is "how premiere pro works," or see if there is a preference checkbox or workaround I'm not aware of. Maybe I've found a bug? If this is just how it is, I'll have to come up with an alternate way to mark footage I'm reviewing, or just move the drives with me when I move, which I'd love to avoid.
    Thanks for any thoughs on this anyone has.
    Billy Sheahan
    Chicago, IL

    Wes, my deepest apoligies for not responding to your kind answer sooner. I had moved on, thinking it was just one of those things, until another editor colleague of mine, found my original question recently and emailed me to find out if there was a solution.
    It appears that even with Premiere Pro CC, copying the XMP sidecar files to the second media drive remains the answer. Sadly my editor friend did most of his pre-edit clip marking in one city and traveled several states away to begin the edit and when he arrived, all of his marks were, of course, not there.
    It would be great if somehow the metadata could be tied to the project, rather than the sidecar XMP files. Perhaps not technically feesible, but it would certainly make more sense from an editing standpoint to not have to be copying sidecar files every time you move to a edit location with duplicate media drives.
    I will most likely write a feature request to see if this can be achived in future versions of Premiere.
    Thanks again for your support and reply.
    Billy

  • Trigger java client update when table changes

    I have a Java Swing client and a C worker program. Both need to communicate with each other via events (C writes progress to Oracle table, Java Swing client displays progress to user).
    I thought I'd do this via a trigger on an oracle table. However, I couldn't figure out how to achieve that. Well, creating the trigger was the easy part, but how do I let the trigger and as a follow-up a stored procedure communicate with my Java client? All the info I found was about triggers and how to store a Java method in an Oracle DB. That's not what I need. I guess I need to register my Java client somehow to monitor the trigger / table.
    Does anyone know how to do that? I'd prefer to not use any additional libraries (Oracle AQ libraries, Oracle streams). A simple trigger would suffice.
    Thank you very much for your help!

    rp0428 wrote:
    >
    The client should poll for updates.
    Pushing from the database, which your original suggestion and the others provides no benefit in terms of the enterprise and might cause unforseen and difficult to diagnose problems.
    >
    I don't agree with either of these comments. Please explain them and provide any supporting documentation or other reliabe sources that you are basing these comments on.
    In particular clarify whether your comments are about the technology of notification in general or whether you feel that the notification solution is not appropriate for this particular use case.
    Polling is generally a terribly wasteful, inefficient and non-productive method of trying to identify changes that happen in a database. Provide supporting documentation for that.
    Naturally the actual metrics for this depend on the number, types and frequency of the DB changes in general and with their relation to the polling frequency in particular.Yep. And most of the time the specifics for that is such that one or both the following is true
    1. The requirements are wrong (for example no GUI needs to be update 100 times a second.)
    2. The requirements are loose enough that polling is perfectly adquate and appropriate solution.
    Oracle itself has gone in the opposite direction with the technology that it develops as can be inferred by the various methods provided in recent releases to support replication and the technology underlying the support of fast refresh materialized views.
    Oracle has all sorts of stuff in it. That doesn't mean that it ideal for all situations or even most situations.
    These technologies include Advanced Queuing, Change Data Capture, Advanced Replication, Standby Databases and the like.
    The only major Oracle technology that I am aware of that does not tend towards publish/subscribe is LogMiner and it does not use polling but rather uses a batch query process.
    And yet for 20 years people have managed to implement large solutions without that.
    Detection of DB changes is difficult for even small single tables without using functionality provided by Oracle specifically for that purpose. There are many, many references in these forums and on the web in general where developers have attempted to 'roll-their-own' procedures for detecting changes after the fact. Most of these attempts are flawed both in their design and execution.
    And yet you think that this new technology will provide immediate error free solutions both on Oracles sides and the implementors side?
    Polling is generally wasteful and inefficient for several reasons. First, poll queries can execute repeatedly when there haven't been any changes at all. This effort is entirely wasted and non-productive.
    I have a large volume database server whose cpu utilization is less than 3% with a projected volume this year of 3/4 billion dollars. In the mid 1980s I was more concerned with utilization. Not so much any more.
    On the other hand experience would suggest that developers have far, far more problems getting the database designs right in the first place. So I don't have great confidence in their ability to use brand new technologies to solve large volume problems.
    And if they don't have large volumes then the point is moot.
    The poll queries cannot easily determine exactly when the change occured; change meaning it was COMMITTED to the database. The common approach of updating columns such as MODIFIED_DATE within a trigger are flawed because any such date/time assigned in the trigger is virtually guaranteed to occur BEFORE the data is actually committed.
    The classic flaw manifests itself when the trigger assigns a value before midnight but the commit actually occurs after midnight. Thus two INSERT/UPDATES can have their data COMMITTED at exactly the same SCN and timestamp value but the MODIFIED_DATE values can be for two different days.
    There is no way to query this data on a nightly basis to get 'changes that happened today' with the risk of missing data the next night when the extract occurs, or worse, duplicating some data in the extracts for two different nights.
    I agree that the design you specified is flawed.
    It however is an excellent demonstration of how a developer might create a flawed design - as I a suggested. New technologies do not fix flawed designs. All they do is provide even more ways to create flawed designs. Which is exacerbated by large volume needs.
    And 'pushing from the database'? The change notification process is similar to publish/subscribe mechanisms and also similar to the way that listeners are used in Java.
    Certainly you wouldn't suggest that Java applications should 'poll' GUI objects to see if a user has taken any action would you?
    I agree your analogy is not apt for this discussion.

  • [svn:fx-trunk] 5409: Fix to bug when binding to constraints.

    Revision: 5409
    Author: [email protected]
    Date: 2009-03-18 21:48:06 -0700 (Wed, 18 Mar 2009)
    Log Message:
    Fix to bug when binding to constraints. Setting real width/height values on ConstraintRow/Column should always register that object as being not content-sized.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-19041
    Reviewer: Deepa
    Testing: checkintests, Mustella containers
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19041
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintC olumn.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintR ow.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • BUG - layer position moves when switching frames in timeline

    When creating a new layer and positioning it in the active frame, the position is sometimes wrong when returning to that frame.
    1. create multiple frames in the timeline
    2. create a layer and position it somewhere in the image
    3. view another frame
    4. return to the original frame and the position has changed
    Positioning the layer again seems to work, it doesn't move by itself when moving between frames, but remains in position.

    Same as your otehr post: Screenshots!
    Mylenium

  • Is this a bug?: copied movie clip has wrong frame rate and ruins the main movie's sync

    Hello,
    I am trying to copy a movieclip with a frame rate of 30 frames per second to a movie that has a frame rate of 30 frames per second. Both movies are actionscript 3 movies. When I do this, my copied movie clip's frame rate reverts to 12 frames per second and all my audio synched animation is trashed. Then when I change it back manually to 30 frames per second it makes my main movie's stage animation go crazy at full possible speed and the audio is all out of sync. I have not set export for sharing or action script on this movie clip. I've tried other movie clips that are 30 frames per second and it is all crazy!
    Is this a bug? What can I do? I've got 100s of movie clips I need to make. I can't keep remaking them just because flash has a screw loose. I'll go crazy!
    -theGibler

    Oh sorry I goofed! My main time line is 12 fps! I can't belive I didn't see this before.

  • Export to Quicktime bug with embedded movies

    Hi
    I'm having an annoying problem when having Quicktime movies inserted in slides, then recording a slideshow and exporting it to Quicktime. I do the following:
    1) Create a new slideshow
    1) Insert movie into first slide
    2) Create another slide
    3) Insert copy and paste movie into this slide as well and add some animated object (i.e. a shape with a motion path)
    4) Record slideshow so that the animated object appears while the movie still plays
    5) Export recorded slideshow to Quicktime
    *What happens when viewing the recorded slideshow:* Start of the presentation. The movie on the first slide starts playing immediately without clicking. *1st CLICK*. Second slide shows up. The movie on the second slide starts playing without clicking as well. *2nd CLICK.* The animated object is triggered, the movie and the animation play simultaneously.
    *What happens when viewing the exported movie:* The exported movie seems to ignore some of the recorded settings. Slideshow starts, the movie doesn't play. *1st CLICK.* The movie starts playing (when actually it was supposed to advance from slide 1 to slide 2). *2nd CLICK.* The presentation advanced from slide 1 to slide 2.
    It seems as if the export does not interpret all the settings the same way the direct presentation does, which is quite annoying as you don't get the same result in the exported movie you see on the screen.
    Workaround: Go to the "QuickTime inspector" button in the inspector window, select the movie, check the option "Start movie on click". Then, go to the "Build inspector", hit the "More Options" button. The movie object now appears in the list. Select it and select "Automatically after transition" in the lower "Start build" part of the inspector. This way, the movie will start playing also in the exported movie.
    Still there is another problem now.
    *What happens now when viewing the exported movie with workaround:* Slideshow starts, the plays. *1st CLICK.* The presentation advanced from slide 1 to slide 2. The movie on the second slide starts playing without clicking as well! YAY! *2nd CLICK.* The animated object is triggered, the animation plays but the movie stops as soon as the animation is triggered.
    So, instead of playing animation and movie simultaneously as in the normal recorded slideshow on screen, in the exported movie, the movie stops the moment the animation is triggered.
    It seems as if the "Play Slideshow" and "Export to Quicktime" have different timelines, or different parameters the two modes evaluate.
    This happened in iWork '08 and also happens in iWork '09. It's quite annoying. For me it's clearly a bug that should be fixed and is worth fixing. Please Apple, fix this bug.
    I also noticed a tremendous amount of crashes while using the export to Quicktime function. While I was trying Keynote in iWork '09 I exported several times to Quicktime and had several crashes just by using this function.

    Hi all.
    I do exactly have the same problem since Keynote 4.0 and was hoping that it's solved in Keynote 5.0.
    As soon as I try to export a previously recorded slideshow, (that has a quicktime-movie embeded on one slide) and one or two little textanimations on it. The embeded movie stops playing when the first animation starts in the exported quicktimemovie. When I view my recorded presentation, everything looks fine.
    I do also believe, that the Quicktime-Export-Function does not work correctly because of timeline differences or so.
    I would really appreciate a fix, specially becaused I upgraded in the hope that this should have been solved since around 10 months now....
    Too bad.
    P.S. As a workaround I am currently using also screenflow to record a recorded keynotepresentation to finally receive a movie. But that is kind of awkward too....
    Message was edited by: Joerg Klaas

  • Adobe Media Encoder (Error compiling movie) Unknown error when writing to Isilon OneFS 6.5.5.18

    Adobe Media Encoder (Error compiling movie) Unknown error when writing to Isilon OneFS 6.5.5.18 while using Adobe Premiere Pro.
    Process:         Adobe Premiere Pro CC 2014
    Path: /Applications/Adobe Premiere Pro CC 2014/Adobe Premiere Pro CC 2014.app/Contents/MacOS/Adobe Premiere Pro CC 2014
    Identifier: com.adobe.AdobePremierePro
    Version:         8.1.0 (8.1.0)
    Code Type: X86-64 (Native)
    Parent Process: launchd [2538]
    Responsible:     Adobe Premiere Pro CC 2014
    Date/Time: 2015-01-06 14:04:23.500 -0700
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Crashed Thread: 55  Dispatch queue: com.apple.root.default-priority
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Customer created test export with 777 permissions and set mount parameters to the following:
    mount_nfs -o vers=3,tcp,rdirplus,intr,nolocks,async,rsize=32768,wsize=32768
      -- Original mount options:
         General mount flags: 0x40 async
         NFS parameters: vers=3,tcp,nolocks,rsize=32768,wsize=32768,rdirplus
      -- Current mount parameters:
         General mount flags: 0x4000058 async,nodev,nosuid multilabel
         NFS parameters: vers=3,tcp,port=2049,nomntudp,hard,nointr,noresvport,negnamecache,callumnt,nolocks,quota, rsize=32768,wsize=32768,readahead=16,dsize=32768,rdirplus,nodumbtimr,timeo=10,maxgroups=16 ,acregmin=5,acregmax=60,acdirmin=5,acdirmax=60,nomutejukebox,nonfc,sec=sys
    The pcap shows once the movie is created a lockup call is responded from Isilon with Error: NFS3ERR_NOENT
    478         V3 CREATE Call (Reply In 479), DH: 0xea5f731c/QBRSN-0-0-1.mov Mode: UNCHECKED
    479         V3 CREATE Reply (Call In 478)
    484         V3 LOOKUP Call (Reply In 485), DH: 0xea5f731c/._QBRSN-0-0-1.mov
    485        V3 LOOKUP Reply (Call In 484) Error: NFS3ERR_NOENT
    V3 LOOKUP Reply (Call In ....) Error: NFS3ERR_NOENT  -   This is by design of OneFS, we coalesce files and then flush them out to disk which is why the commit time is accurate but the file is not immediately available. however when an async option is used within the mount options this should be avoided if writing asynchronously to the cluster.  Has anyone else seen this behavior lately? (current workaround is to store locally and transfer to the cluster via Finder)

    That error can happen for many reasons...one of the reasons that I occassionaly get it is because I try exporting a movie to an external drive that has been formated in the old FAT32 instead of the NTSF standard.  FAT32 only allows for file sizes up to 2 gigs.  And as soon as it reaches that...I would get that error.  I don't know if that is why you are getting that error...but it would be easy to check.  1) are you generating a file that is over 2 gigs?  2) is your drive that you are exporting to FAT 32 (just right click the drive in My Computer and select "properties" then just look for what it says next to "file system".

  • HT1390 I've rented & downloaded a movie on my computer in itunes, but it does not show up on my Apple TV.  Everything else shows up on Apple TV, including my computer's movie library.  When I click on the movie in Apple TV it says I've already rented it.

    I've rented & downloaded a movie on my computer in itunes, but it does not show up on my Apple TV.  Everything else shows up on Apple TV, including my computer's movie library.  When I click on the movie in Apple TV it says I've already rented it and asks if I want to rent it again.  No, I just want to watch it.

    Unfortunately I have to if I download it on my computer.  I have rented itunes movies before directly using the Apple TV and it worked just fine and I could stay in the living room.  Without clicking that icon on my computer, there was no way to watch it.

  • When I use my IPhone 4S to view the Shaw Go Movie Central App when I am at home I only use WiFi which is automatic, I start watching a show and sometimes I will get a message like "you can not use your cellular for video playback" or something close to th

    When I use my IPhone 4S to view the Shaw Go Movie Central App when I am at home I only use WiFi which is automatic, I start watching a show and sometimes I will get a message like "you can not use your cellular for video playback" or something close to that. Then I received an email from Telus saying I had used my 3G instead of Wi-Fi  using 75% of my data. How can this happen when I'm on Wi-Fi at home? If it switched to 3G for some reason I should have been disconnected and not just transferred to 3G network using up my data. What is the fix for this??

    It doesn't have to be that complicated, Verizon iPhones come unlocked, just tell VZ you're going on Holiday/Traveling and suspend the service, no need to pay for service if you're not going to be using it. Pick up local SIM cards in the countries of your choosing, pop them in, re-activate iMessage and you're set!
    I recommend getting a SIM card from the Three network in England, they have great EU roaming rates and free like-home roaming in Italy.
    Set your phone's region to match the country you're in, it'll save from some headaches when calling local/international numbers.
    To answer your questions,
    1. If you choose not to have a local SIM card, it is good to keep your phone in Airplane mode to save battery.
    2. Make sure the two iPhones have different names to reduce sync/restore issues.
    3. If husband has an iPhone also, you can chat with iMessage/Facetime, just give him heads up about the new number you'll have. Otherwise, use Whatsapp if he's got an Android. You can activate Whatsapp with your American number or the international number if you choose to get a SIM in Europe.
    Also, Get the MagicJack app and/or Google Hangouts, both of those apps provide you with free calling to the USA and Canada using any internet connection. Google Voice is another good way to SMS across the seas.
    Let me know if you need any more tips for iPhoning across the pond.

  • Lion Clients 10.7.4 show network accounts are unavailable and server is not responding when binding to Snow Leopard server 10.6.8

    Hello,
    I am running Snow Leopard Server 10.6.8 and my clients are Lion 10.7.4.  While testing I had no issues binding 10.7.4 to our 10.6.8 server's OD.  I created a 10.7.4 image to push to all of our machines and in the beginning of last week I was able to push the image and get the machines to bind with OD and apply preferences on these machines through workgroup manager.  Towards the end of the week though this stopped working.  Now any time I bind a 10.7.4 client to OD it allows me to perform an authenticated bind and the machine shows up in workgroup manager but immediatley after binding the client the status jelly next to the OD server in the directory list is red and says "This server is not responding".  If I reboot the client I get a notification that "Network accounts are unavailable" at the login screen.  My preferences from workgroup manager are also not applying, which is my main concern because without workgroup manager my mac server is somewhat pointless as we use it for very little else. 
    I've since tried to bind a snow leopard machine (10.6.8) and this still is working with a green status jelly.  I've also built a lion machine from scratch, updated to the 10.7.4 combined update and am still getting the same issue where it shows the server is not responding when binding to OD.  I then applied the subsiquent OS update after the 10.7.4 combined update but the problem still persists.
    Is anyone else having this issue?  Any help would help me keep my sanity.
    Thanks,
    Dane

    Have you had any luck finding a solution to this?  The only thing I have found was to unbind and then bind without authentication.  Any help with progress on your end would be appreciated!
    Nick.

  • HT204370 I downloaded an HD movie onto my laptop from i-tunes.  It plays fine on my laptop, but when I plug in my HD projector, the movie quits.  When I unplug the projector, the movie starts again. I have never had a problem with projecting an itunes mov

    I downloaded an HD movie onto my laptop from i-tunes.  It plays fine on my laptop, but when I plug in my HD projector, the movie quits.  When I unplug the projector, the movie starts again. I have never had a problem with projecting an itunes movie before this. Someone told me that i-tunes changed something so that movies can no longer be projected.  We have a home theatre and have watched movies this way quite regularly, so it would be a drag if Apple will prevent us from doing this in the future. 

    I don’t know about projection, but I’m unable to watch HD content in iTunes because my Apple 30-inch Cinema Display is not HDCP-compliant (which is part of an HD copy-protection scheme).
    The other movies you’ve projected, were they HD as well? If not, it could be the same problem: your projector is not HDCP-compliant.

Maybe you are looking for