GIF not game on ipad properly

I have a very curious and strange problem. I have a set of gif of some characters for a site Web - and - play 3/5 perfectly on all platforms. 2/5, however, have a strange glitch that happens only on iPad. It sometimes looks like the previous image appears behind current one - for some reason any in bright yellow. I went to thouroughly 5 different gif and can find no difference between them it would cause, do you have any ideas? The problem is that on an ipad, I'm afraid I don't know how to take a video of the problem, but this picture should give you an idea:

problem.png

Any ideas what I could do wrong? All export parameters are the same, and they look like this:

settings.png

The film for these has been registered with Quicktime, and then I have a key video in After Effects to remove the background then put them in Photoshop for the final phase where I added an outer contour and their scaling and exported.

Any help is appreciated, I'm at my wits end - I feel like I've tried simply to make new animations for these 2 little broken!

Looks like someone from the Office stumbled upon the solution! Similar to what is described here: 8 http://forums.macrumors.com/threads/corrupt-transparent-animated-gifs-in-ios-safari.137865 /

They opened the broken gif in Photoshop that they were able to change the damaged frames to eliminate instead of auto - I never had that option because in the Photoshop file, it was a video animation instead of a framework, a! Anyway, once they have been through and rearranged all executives have (and reset the synchronization of frame) everything's fine! Yay!

Tags: Photoshop

Similar Questions

  • 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;
                        }
                    }
                }
            }
        }
    }
    
  • "Drag a Drop feature" does not work in Ipad.

    I use JDEVELOPER Studio Edition Version 11.1.2.2.0.
    I develop a sinple too page table and by using "Drag Drop functionality year" to pass rows of a table to another table.
    This work properly in all the web explore for Pc and does NOT WORK in IPAD.

    support iPad is currently in 11.1.1.6 and we are targeting to add it to the 11.1.2.3 as well.
    So, you will need to wait as the version to come out.
    (should be relatively soon)

  • Thank you for contact I can not access my ipad air disable I try to reboot same issue pleas help me I have a lot of data in the air from my ipad

    Thank you for contact I can not access my ipad air disable I try to reboot same issue pleas help me I have a lot of data in the air from my ipad

    Here you will find a way how to activate your iPad If you have forgotten the password for your iPhone, iPad, or iPod touch or your device is disabled - Apple supports

  • Have an older iPad that I inherited. iOS is outdated but get error message when I try to update. Support instructions do not match my iPad. This was bought in 2011 I think.

    Have an older iPad that I inherited. iOS is outdated but get error message when I try to update. Support instructions do not match my iPad. This was bought in 2011 I think. I need help to remove the update one put it back.

    CBTEKRONY wrote:

    Have an older iPad that I inherited. iOS is outdated but get error message when I try to update. Support instructions do not match my iPad. This was bought in 2011 I think. I need help to remove the update one put it back.

    What is this error message that you receive? This would help a lot. From there, a person must be able to provide some additional troubleshooting steps.

  • How can I see notes on iMac iPad

    I have 83 notes on my iPad, but I can't see them on my iMac or the iPhone, which are all on the same Apple ID. end of 2012 running Yosemite 10.10.5 iMac iPad running 9.3.2 and phone working 9.3.2

    In iCloud parameters on the iPad make you Notes is selected.

  • Nikon D5300 videos are not supported on iPad Mini 1

    Hello everyone

    I have a Nikon D5300 and I shot a lot of videos in HD 1080 p (60 p)! Videos play really well and smoothly the camera, but when I try to import them using itunes then itunes says: «the selected videos cannot be transferred because they are not playable on iPad»

    I don't know why! Is there any solution for this?

    I tried the Nikon MobileUtilty app to share the video via wifi but same problem, that it is not imported!

    Photos are imported fine, but don't upload videos! What is c?

    How can I import my D5300 videos to my iPad mini 1?

    Video formats are supported?

    Here's what the iPad support Mini:

    Video formats supported: H.264 video up to 1080 p, 60 fps, high profile 4.2 with AAC - LC audio up to 160 Kbps, 48 kHz, audio stereo formats .m4v, .mp4 and .mov; MPEG-4 video up to 2.5 Mbps, 640 x 480 pixels, 30 frames per second, basic profile with AAC - LC audio up to 160 Kbps per channel, 48 kHz audio stereo in the formats .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 x 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi format format

  • iTunes does not recognize my iPad

    I was syncing my iPad to iTunes for several years with no problems. When I tried to sync this morning, iTunes does not recognize my iPad, regardless of what I'm trying. My backup and applications are still there, but they just don't connect. I'm running an iPad2, iOS 9.3.1. I have authorized an update of iTunes in the last week or two, but I don't know which is linked. Current ITunes is 12.3.3.17, installed on a PC with Windows 10. The device icon does not appear in the menu bar iTunes header.

    I tried:

    Restart both iPad and PC, without any help.

    Uninstalled and reinstalled iTunes without help.

    I would like suggestions. Thank you very much.

    Please follow these steps

    If iTunes does not recognize your iPhone, iPad or iPod - Apple Support

  • Another reason to hate the Photos app. I want to put titles on the photos that I put in an album to share with others. I can add titles on my MacBook, but not on my iPad Air. I tried to copy the photos from my MacBook to the iPad, but the titles have disa

    Another reason to hate the Photo App. I want to put titles on my photos in an album to explain what are the images. I can do this on my MacBook, but not on my iPad Air. I tried to copy the album (by airdrop) to my iPad, but the titles disappear. Any suggestions?

    Since the Photos of OSX application, select an image (once it's in an album, not in Moments) and you can add a comment that is visible in the Photos of iOS.

  • My iTunes does not detect my iPad.  I use Windows 10, Norton 360 and the latest version of iTunes.  All software are up to date, and each says it works correctly.

    My iTunes does not detect my iPad.  I use Windows 10, Norton 360 and the latest version of iTunes.  All software are up to date, and each says it works correctly.

    Turn off or get rid of Norton.   I really don't see why you need it.

  • I downloaded Itunes 12.3.3 and now I tunes does not recognize my Ipad or Iphone. I went through all the procedures and just uninstall and reinstall. Please fix 12.3.3.Thanks.

    I downloaded Itunes 12.3.3 and now I tunes does not recognize my Ipad or Iphone. I went through all the procedures and just uninstall and reinstall. Please fix 12.3.3.Thanks.

    iTunes: fix iPhone or iPod not detected Windows 10

  • How can I share notes from my ipad to my ipad

    How can I share notes from my ipad to another as my ipad

    Activate iCloud on two iPads, using the same Apple ID and make sure that Notes is enabled.

    Settings > iCloud > Notes

  • 10 Windows does not recognize my Ipad

    I can't sync my Ipad with Windows 10 because my computer does not recognize my Ipad and does not allow me to add it as a new device.

    Help, please.

    Asked and answered dozens of times on these forums already:

    If iTunes does not recognize your iPhone, iPad or iPod - Apple Support

  • Movies to him does not display on iPad Pro

    Bought for a film on the Apple TV and it appears in iTunes, my iPhone 6 and iPad 4 but not on my iPad Pro.  Help please.

    Greetings whindsjr,

    I understand that you see the contents of movies on your computer, iPhone, and iPad, but not on your iPad Pro. Is this correct?

    You sync your iPad Pro with your computer? If so, is it configured to synchronize movies? See this help page - manage the content of your devices - iPad User Guide.

    If you use iCloud for managing your content iPad Pro, she is signed to the same as other devices iCloud account? See this page - iCloud - iPad User Guide

    Thank you for using communities of Apple Support.

    Be well.

  • Tag is not make most html properly, Webview does, but I would have preferred the text band, if this is done easily?

    Hello

    Tag is not make most html properly, Webview does, but I would have preferred the text band, if this is done easily?

    Whether someone has an example.  If not then I'll be forced to use a webview but I have problems make him mimic the appearance of a label.

    Thank you

    to the point of replace text, I recommend this function:

    var normalize = (function() {
                                    var from = "ÃÀÁÄÂÈÉËÊÌÍÏÎÒÓÖÔÙÚÜÛãàáäâèéëêìíïîòóöôùúüûÑñÇç",
                                    to   = "AAAAAEEEEIIIIOOOOUUUUaaaaaeeeeiiiioooouuuunncc",
                                    mapping = {};
    
                                    for(var i = 0, j = from.length; i < j; i++ )
                                    mapping[ from.charAt( i ) ] = to.charAt( i );
    
                                    return function( str ) {
                                        var ret = [];
                                        for( var i = 0, j = str.length; i < j; i++ ) {
                                            var c = str.charAt( i );
                                            if( mapping.hasOwnProperty( str.charAt( i ) ) )
                                                ret.push( mapping[ c ] );
                                            else
                                                ret.push( c );
                                        }
                                        return ret.join( '' );
                                    }
    
                                })();
    

Maybe you are looking for

  • Fantom iOS 10 alarms

    I have iPhone 6s more with iOS 10.0.2. Today, it is at least the second time that an alarm on this subject which is quite unexpected. This time, while I got on a train to work. I know that I have has not yet set the alarm for at least several days. E

  • iPhoto questions

    My new Macbook Pro has never been iPhoto. I downloaded OS X El Capitan and my current system. When I try to download whatever it is associated with iPhoto, I get this message. Can you help me understand what is the problem? Message: this update is no

  • envy dv7: need to change the boot sequence in the BIOS

    I'm trying to get to the boot sequence settings in the BIOS and I forgot the administrator password. Trying unsuccessfully to Afgter 3, I get the message according to 50902428. Can you help me get?

  • Location in wifi feature

    Hello! I'm just a big * beep * or is it explain how to use location based wifi? You are supposed to have the Wi - Fi button ON or OFF when you use the wifi feature location or is it intended to turn on automatically when you are in the range of a cer

  • SmartLink 56 k Moden seems to not be compatible with this Windows 7 modem is installed in a Packard Bell Comuter

    Modem SmartLink 56 seems not to be compatible with Windows 7 the moden came installed in a Packard Bell computer