Animated GIF causes popup to hang?

Hello:

We started to use animated GIFs strongly in popups Teststand for about a year and a half. As we used this feature, we have had reports more and more Teststand suspended after acknowledging the popups.

The problem is very intermittent. But it is reproducible. See the attached files. Sequence is call a popup not modal teststand again and again that displays an animated image. The popup is set to timeout after a second (just for the convenience to reproduce the problem). The sequence always crashes in minutes. Behavior is the same in the editor of sequence or the user interface of the CVI. If the sequence changes so that no image is displayed by the popup, the sequence does not crash.

We use Teststand 4.0.1f1. I would like to know how to solve this, because it is quite a major problem with us.

Thank you

Dave

Dave-

Wanted to just call with you on this issue. LabWindows/CVI 9.0.1 was released and its runtime engine resolves the deadlock problem that have seen you. So to avoid blocking on a system, you just install the new version of the RTE located in the: http://ftp.ni.com/support/softlib/labwindows/cvi/Run-Time%20Engines/9.0.1/NILWCVIRTE90.exe. You may need to restart your system after the installation.

Tags: NI Software

Similar Questions

  • Firefox slows down when opening a site with animated gifs

    After FF4 update, I find that whenever I try to open a page that has several on this animated gifs, firefox slows down a lot. The CPU usage goes up to 50-75% and all animated gifs are moving really slow.

    It is not only large animated gifs, but it occurs also on the forums that have animated smileys. I never had this problem in FF 3.6 neither another browser (IE, Chrome, Safari). If I start FF4.0 without modules or plugins it does the same thing. Even with a new facility. Does anyone have a solution to his problem? Since I can't use some of my favorite now with FF sites, without my pc slow everything down.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    Safe mode disables extensions in Firefox 4, and disables hardware acceleration.

    • Tools > Options > advanced > General > Browsing: "use hardware acceleration when available.
  • animated GIF not showing do not adequately

    I have an animated gif image, and I used http://supportforums.blackberry.com/t5/Java-Development/Display-an-animated-GIF/ta-p/445014 this link to animate the noise towards the top of the screen and that did not work properly

    You can see the animation below

    public class UpdatePopScreen extends PopupScreen{
    
            public UpdatePopScreen(){
                 super(new VerticalFieldManager(), Screen.DEFAULT_CLOSE); 
    
                 GIFEncodedImage ourAnimation = (GIFEncodedImage) GIFEncodedImage.getEncodedImageResource("sunblackk.gif");
                AnimatedGIFField _ourAnimation = new AnimatedGIFField(ourAnimation, Field.FIELD_HCENTER);
    
                this.add(_ourAnimation);
               add(new LabelField("Loading..."));
    
        }         
    
        }
    

    and I have attached AnimatedGIFField.java

    I think something is wrong in your establishment or the way you use this code, because it works very well for me.  Sorry you'll have to do investigative work to identify the problem.

    I suspect there are two possibilities:

    (a) you have not configured your environment properly

    (b) you use something else keeps track of events

    I think that (b) is the most likely, but to test these two at the same time, you must proceed as follows:

    Create a new project and a new example application, then, in this application, test the screen.  Nothing else in this project - it should start just a screen, the screen should have a button, when you click the button the treatment should push the pop-up screen.

    I have included my code (which combines Animation and popup screen into one file - not recommended but useful source under test).  Use this code and the image as an attachment in your new project.

    Test it on your Simulator.

    Assuming that you can get this working, then we can investigate on what is actually wrong in your application.

    package mypackage;
    
    import net.rim.device.api.system.GIFEncodedImage;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Screen;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.PopupScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    
    public class UpdatePopScreen extends PopupScreen {
        public UpdatePopScreen(){
    
             super(new VerticalFieldManager(), Screen.DEFAULT_CLOSE); 
    
             GIFEncodedImage ourAnimation = (GIFEncodedImage) GIFEncodedImage.getEncodedImageResource("animated.agif");
            AnimatedGIFField _ourAnimation = new AnimatedGIFField(ourAnimation, Field.FIELD_HCENTER);
    
            this.add(_ourAnimation);
            add(new LabelField("Loading..."));
    
        }
    }
    
    class AnimatedGIFField extends BitmapField
    {
        private GIFEncodedImage _image;     //The image to draw.
        private int _currentFrame;          //The current frame in the animation sequence.
        private AnimatorThread _animatorThread;
    
        public AnimatedGIFField(GIFEncodedImage image)
        {
            this(image, 0);
        }
    
        public AnimatedGIFField(GIFEncodedImage image, long style)
        {
            //Call super to setup the field with the specified style.
            //The image is passed in as well for the field to configure its required size.
            super(image.getBitmap(), style);
    
            //Store the image and it's dimensions.
            _image = image;
    
            //Start the animation thread.
            _animatorThread = new AnimatorThread(this);
            _animatorThread.start();
        }
    
        protected void paint(Graphics graphics)
        {
            //Call super.paint.  This will draw the first background frame and handle any required focus drawing.
            super.paint(graphics);
    
            //Don't redraw the background if this is the first frame.
            if (_currentFrame != 0)
            {
                //Draw the animation frame.
                graphics.drawImage(_image.getFrameLeft(_currentFrame), _image.getFrameTop(_currentFrame),  _image.getFrameWidth(_currentFrame)
                                    , _image.getFrameHeight(_currentFrame), _image, _currentFrame, 0, 0);
            }
        }
    
        //Stop the animation thread when the screen the field is on is
        //popped off of the display stack.
        protected void onUndisplay()
        {
            _animatorThread.stop();
            super.onUndisplay();
        }
    
        //A thread to handle the animation.
        private class AnimatorThread extends Thread
        {
            private AnimatedGIFField _theField;
            private boolean _keepGoing = true;
            private int _totalFrames;               //The total number of frames in the image.
            private int _loopCount;                 //The number of times the animation has looped (completed).
            private int _totalLoops;                //The number of times the animation should loop (set in the image).
    
            public AnimatorThread(AnimatedGIFField theField)
            {
                _theField = theField;
                _totalFrames = _image.getFrameCount();
                _totalLoops = _image.getIterations();
    
            }
    
            public synchronized void stop()
            {
                _keepGoing = false;
            }
    
            public void run()
            {
                while(_keepGoing)
                {
                    //Invalidate the field so that it is redrawn.
                    UiApplication.getUiApplication().invokeAndWait(new Runnable()
                    {
                        public void run()
                        {
                            _theField.invalidate();
                        }
                    });                
    
                   try
                    {
                        //Sleep for the current frame delay before the next frame is drawn.
                        sleep(_image.getFrameDelay(_currentFrame) * 10);
                    }
                    catch (InterruptedException iex)
                    {
    
                    } //Couldn't sleep.
    
                    //Increment the frame.
                    ++_currentFrame;      
    
                    if (_currentFrame == _totalFrames)
                    {
                        //Reset back to frame 0 if we have reached the end.
                        _currentFrame = 0;
    
                        ++_loopCount;
    
                        //Check if the animation should continue.
                        if (_loopCount == _totalLoops)
                        {
                            _keepGoing = false;
                        }
                    }
                }
            }
        }
    }
    
  • YouTube / GIFs causes sound stretch and shuts down the computer.

    Hello.

    Everything worked him up until the spring of 2014 when my internet lost residence. Finally moved to another residence in summer 2014 and has noticed that when using my laptop once again that Youtube videos and animated GIFs stretched and stuttered sound and froze my computer.

    Flash player, Java, Windows Media player and IE were affected. I tried to update all but settled is constantly interrupted by error messages. It all traces back to IE but can not enter say it or re-install / update. I rather not uninstall all of the programs mentioned above for fear of these programs is not able to install afterwards. Restorations and restores system were made but only up to a point (less than a month ago) and not to the most remote, with few results.

    Also somehow had internet limited during spring 2014 from time to time but Kaspersky failed to update normally and himself knocked out. Had to use his troubleshooting and Best Buy help re - install, but it was a successful installation. Perhaps something got through that affects those above apps but Kaspersky found nothing wrong.

    A question, someone of you recommended a total OS re - install at this point? Operating system is Windows 7.

    Hello

    Most often this is caused by requiring to do two things (or both):

    1. make sure you have the latest video card drivers. If you are already on the latest graphics card drivers, uninstall and install a version or a few versions behind the last to make sure this isn't a last number one driver. If you have already experienced with the driver of the card later and earlier versions, please try the driver beta for your card.

    2 disable hardware acceleration in your browser:

    Firefox-

    • Click on the orange top left Firefox button, then select the 'Options' button, or, if there is no Firefox button at the top, go to tools > Options.
    • In the Firefox options window, click the Advanced tab, and then select 'General '.
    • You will find in the list of parameters, the checkbox use hardware acceleration when available . Clear this check box.
    • Now restart Firefox and see if the problems persist.

    IE - http://www.SevenForums.com/tutorials/149063-Internet-Explorer-GPU-hardware-acceleration-turn-off.html

    Chrome - http://www.sevenforums.com/tutorials/271264-chrome-gpu-hardware-acceleration-turn-off.html

    Kind regards

    Patrick

  • How can I put an animated gif in (a jpeg image on)?

    Imagine that the dog is an animated gif from a video MP4 PS CS5. I want to put the dog in the black box with the text which is a jpeg file. I want the dog to always be animated.

    1 image, dog animation on black jpeg with text. This can be done? Ive been banging away at her like a monkey with a baseball bat, no luck.

    Thank you

    http://i.imgur.com/2A5GJ4k.jpghttp://i.imgur.com/AGSBWL9.jpg

    I went through and actually created this using a MP4 video.  I have CS5 accessable, so I used CS6, but it should work the same.  I made a few changes here is the process:

    Now, you can save to the web as a GIF file.  The length of your video may be causing crashes.  GIFs should be of very short duration.

  • animated GIF glitter

    animated GIF images sparkle:
            final ImageView imgView = new ImageView();
            final Image tempImg = new Image(getClass().getResource("logo1.gif").toExternalForm());
            imgView.setImage(tempImg);
            imgView.setLayoutX(50);
            imgView.setLayoutY(50);
            root.getChildren().add(imgView);
            primaryStage.setScene(scene);
            primaryStage.show();
    some gif images works great... most of the images here and there dances
    for example: http://www.nonstopgifs.com/animated-gifs/games/games-animated-gif-002.gif

    How to avoid this flicker
    some images wrks fine swing... who sparkles in JavaFX 2.0

    Help, please

    Published by: Vj on February 21, 2012 15:03

    Some scintillating questions GIF in the first versions of JavaFX are caused by the processor of JavaFX GIF treatment not correctly the number of scan lines in the GIF (see for example the following question - http://javafx-jira.kenai.com/browse/RT-18039 - now fixed). Try upgrading to a version 2.1 beta (http://www.oracle.com/technetwork/java/javafx/downloads/devpreview-1429449.html) and see if you still have any questions. If the problem is not fixed for you, log a problem with http://javafx-jira.kenai.com/.

  • Animated GIF works in network, is not out?

    Greetings,

    I have a piece of RoboHelp (FlashHelp) at http://iqweb.mcny.edu/iqweb/Student_IQWeb/userGuide/student_IQWeb.htm, which has a few animated GIFs, you will find one at the end of the page in the book Do it online, topic view request status. There are two animated smileys aircraft marking the end of the page and the end of the documentation. This work is hosted by a server maintained internal to the college for which the piece has been developed.

    I have the same job hosted outside for my own portfolio at http://mywebniche.com/ID/MCNY/RoboHelp/Student_IQWeb/userGuide/student_iqweb.htm and animated GIFs don't animate.

    Also, when I discover the piece to the - location internal http://iqweb.mcny.edu/iqweb/Student_IQWeb/userGuide/student_IQWeb.htm to outside of school, that is to say, outside the LAN, the same animated GIFs also fail to animate.

    Someone has an idea, what happens? It is not a browser setting, I checked all of those, they are the same on the inside and the outside. It can be the server itself since internal server of animated GIFs work fine when displaying internal, but not of the 'outside '. Conversely, the animated GIFs in the RoboHelp on the outside Server animate very well when we look within the College LAN, but not from the outside.

    Why would a GIF animate a LAN, but not outside?

    Kind regards

    stevenjs

    Hello stevenjs,

    There are several causes for this that I discovered a few months ago.

    Click here to see a few options.

    It will be useful.

    Brian

  • How to make animated gifs to work in FCPX?

    Hello

    How to make animated gifs to work in FCPX?

    They work in FCP7 (FCS) but not FCPX. Strange.

    assailed

    Elmer

    If you had FCP7, you have Quicktime 7 Pro (upgraded automatically at installation FCP7). Check your Applications > Utilities folder.

    Open the gif in QT7 and export as... (Sequence Quicktime Movie > Open Options)... might as well go with ProRes LT and make sure that you pay attention to the size option (select current if the original is 100%).

  • Java causes ff to hang/crash

    I'm having a problem with Java and firefox. Web pages that use Java or cause firefox to hang up (tabs are still clickable, and window title changes, but the page does not work), or crash all together. (I can't even use the app Java to detect on their Web site, it just pulled and never recovers)

    I tried to uninstall and reinstall Java and Firefox several times in different orders and nothing has fixed the problem yet. Java does not work in SafeMode either. I am running Windows Pro 8.1, Java 8, 45 and Firefox 37.0.2. I suspect that there is a problem with my computer or settings of Firefox because I don't get the pop-up windows asking me to allow/deny pages want to use Java as I get with IE. But Java does not work in IE either.

    If there is any other info I can give you please let me know, I'm going nuts with that to try to understand the problem and I'm stuck.

    This could give more control over java applets by allowing some websites to run java:

    Also make sure you install the 32-bit version of Java, it shouldn't make a difference as far as I KNOW, but Firefox is 32-bit.

    However, it does not solve the shot. If it is reproducible on other computers, you should also contact the developer of the applet.

  • An animated (gif) file can be inserted into an email, or must it be attached?

    An animated gif file can be inserted into an e-mail? It's something that worked when I was using Outlook 2003, but does not work in Outlook 2010. Thunderbird allows a fully animated gif file in an email, or only as an attachment >

    It is animated by the recipient; Save as draft or see envoys.

  • Animated GIF doesn't move, image.animation_mode already set to Normal

    With image.animation_mode already set to Normal.
    more animated gif (if not all) are to be does not move

    There is no problem in loading the image, but it seems to be limited to the first image.

    It happens even with the download of the gif, only the first image is uploaded so that the image is not as lively.

    Will there be another kernel setting in firefox that affect it?
    I tried to off the extensions and addons, but the problem persists.
    It won't happen with a new profile.

    Thanks, I found that it is from the proxy software. I froze without meaning to the animatinos.

  • I use a third party inf file when creating a network connection via my USB port. The USB connection will become inadmissible and also cause the laptop hang up.

    I use a third party inf file when creating a network connection via my USB port. The USB connection will become inadmissible and also cause the laptop hang up. Currently I try to modify the INF file but is seeking a help or suggestions in T/S to this problem. Thank you.

    original title: third party INF problems

    Hi Paul,.

    ·         Why are you using a USB port to create a network connection instead of using an Ethernet connection?

    You can see the following article on how to set up a network.

    How to set up a small network with Windows XP Home Edition (PART 1)

  • Animated gif file won't load my local server

    I am creating a web page with html and load it my browser a lot to see what effect I have because I try to write lines of code. I have an American flag on the page and works very well every time I load the page. But when I turned on my local server to my computer laptop 64 bit of windows 7 it will not load animated gif. Why is this? What should I do to correct this?

    Hi Ken,

    The Microsoft Answers community focuses on the context of use. Please reach out to the professional community of COMPUTING in the below link MSDN forum.

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • How can animated GIFs, I do to make them work with Windows 7?

    I can't do the animated GIFs to work after that I have download on my computer.

    I tried to get a few new avatars and for some reason that I can't animated GIFs to work after that I have download it to my computer, they remain as an ordinary image. For example, if I tried to get ith animated GIFs

    .
    http://www.glitter-graphics.com/down...100&height=100

    So I followed the directions [with the right button on the image below and select "save under" only for personal purposes: Please do not send to other sites.] (see our TOS)]   and always get a still image. What I am doing wrong?

    What is going on with everything I tried to copy or download animated GIFs, never had this problem with Windows XP.
    Now I have windows 7.

    Help? anyone?

    Thank you

    Have a look here.

    Panel\All Control Panel Items\Default programs, "Associate a type of file or Protocol with a program", the command on my machine the default program for .gif is Internet Explorer.  Which appear to indicate a page full of IE with an animated .gif, maybe you need a third party program to do what you want?

    Go to IE tools/internet options/advanced/multimedia. Make sure that the option to play the animations is turned on. If no joy, make sure that your connections are associated with Internet Explorer - if you click on a .gif file in windows Explorer, IE should open to view it.  Some security software can disable the animation.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

    See what is here if you are looking for Avatars.
    http://www.Google.com.au/search?q=avatars+download&SourceID=IE7&RLS=com.Microsoft:-to the: IE-SearchBox & ie = & oe = & redir_esc = & ei = d8t6TOL4JIPJce2Z4PcF

  • Export the animated GIF on MAC

    Hello beautiful people of the internet!

    I have a small question: I always use first Pro CS6 and not the CC on my Mac version... is there a reason for me to upgrade if I want to export GIF animations faster... or is there a solution how to activate the file > load > media > animated GIF on mac?

    Unfortunately, to make a GIF animation on mac, you have to do some extra steps using Photoshop or other software that you're not supposed to do on Windows...

    On Windows first Pro CS6 supports export region selected as witch GIF animated unfortunately not the case for mac...

    Sorry to be redundant but my question is - is there a possible way to activate the function "export to animated gif" on Mac? or he did appear in later versions of first CC?

    Sincerely yours.

    Kami Inari

    Alas, export of gif is windows only.

    Workaround: Animated gif selection does not appear in the menu "output" first Pro CC?

Maybe you are looking for