Why my animated GIFS not displayed on some mobile phones

I have created some animated gifs in Fireworks for use on a Bluetooth server.

One time created, I save it as a png and then drop as an animated gif.

I then download the gif animated to the server to be transmitted to mobile phones.

For some reason, certain display gifs and others don't.  I have looked at the size of the file etc, but does not understand why the file appears.

My colleague has a Nokia mobile and I recently sent two gif files.  The one which is displayed and the other is not.

They were both of the same size etc, and both had been created and saved in the same way.

Does anyone have any ideas as to why some animated gif files not displayed.

I thought it might be the phone, but some files were properly posted.

Any help would be appreciated.

Thank you

Don't you "save under" or "Do you export" in .gif format. The distinction is important.

'Saving' files recorded with propreitary information of fireworks in the header (including files .gif for some versions). Any file for the Web or for any other use must be "exported".

Tags: Fireworks

Similar Questions

  • Why my site Muse not displayed correctly on the phone?

    I created a site in desktop and Adobe Muse phone versions.  I published the Business Catalyst site and have my domain transfer with masking to the catalyst for business address.

    If I get the catalyst for business of the site url appears correctly on the phone.  If I enter the domain name, shrivelled.  I googled the problem and added HTML in the header:

    < = happy 'viewport' meta name = "width = device-width, original scale = 1.0, maximum scale is 1.0, scalable user = 0" >

    This has not solved the problem.  What I am doing wrong

    Indo - usbposummit.businesscatalyst.com

    www.Indo-usbposummit.com

    Hello

    I see that you call indo - usbposummit.businesscatalyst.com in a frameset on your domain www.indo-usbposummit.com.

    Mobile redirection may not work correctly nested within a frameset however indo - usbposummit.businesscatalyst.com will redirect correctly.

    If you pass the domain name rather than wrap the site muse in a frameset, mobile redirection will be able to work.

    Kind regards

    Vivek

  • Flash animation is not displayed

    Hello.

    DW CS3 and Flash CS3.
    My question is about www.trollipestates.co.za

    I don't understand not is, but for some reason, I don't know, my flash animation is not displayed. When I go to the source code in IE7 and FF3, the code says it must display.
    Curiously, it appears when running on my localhost server.

    Can someone please help me; It's very frustrating.

    Kind regards
    Deon

    Deon,

    You must download this file:
    http://www.trollipestates.co.za/scripts/ac_runactivecontent.js

    Alex

    DeonH wrote:
    > Hi there.
    >
    > DW CS3 & Flash CS3.
    > My question www.trollipestates.co.za
    >
    > I don't understand is, but for some reason, I don't know, my flash animation
    > is not displayed. When I go to the source code in the both FF3 and IE7, the code says
    > it should display.
    > Oddly enough, it appears when running on my localhost server.
    >
    > Can someone please help me. It's very frustrating.
    >
    > Best regards,
    > Deon
    >
    >

  • 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;
                        }
                    }
                }
            }
        }
    }
    
  • Captivate 7 animated GIF not grateful?

    I used photoshop CS6 to create a GIF animated from a video clip. using the timeline, I have a file saved in. GIF format and it's clearly an animation. When I insert > animation CV7 says "the file is not an animated GIF file. It starts to become a little ridiculous when you consider that the file has been made using the PS and that it IS an animated GIF. I wonder if there is some kind of 'special' works I need to get them imported or if I'm somehow not recording properly?

    Does anyone has had problems with GIF animated in Captivate 7?

    Thanks in advance.

    Jon

    the image in question is here:

    60RPM-85.gif

    Hi Jon,

    I think it's because the time-out value that you set for each image in Photoshop.

    Please go to Photoshop, open the source file, could you please the 'delay' for each of your frame to 0.01 or value if it shows as 0, this can be done using the animation image window. Re-save the GIF format for Web devices and import in Captivate, see, if you're abale to inport this time in Captivate. Even if the step is applicable to a different problem, but I'm curious to know if this could solve.

    Second, you could try inserting an image rather than the animation, the message means it is not a full animation, but a regular file.

    Thank you

    Anjaneai

  • Nav background image does not display in some browsers...

    Hello

    I am trying to build a model of Web site - still ironing a few bugs, but just found out that the information in my navigation bar image does not appear on some browsers (including certain versions of Internet Explorer). It works in IE8 where my first test (on both my drive local and temporary 'live' server, but in most other browsers, does not appear...

    Here is a link to my test page:

    and here's the css with the code in red:
    / * Menu external Wrapper * /.
    {.p7PMMh04}
    Width: auto;
    height: 20px;
    margin: 0 auto;
    do-family: Arial, Helvetica, without serif.
    do-size: 11px;
    make-weight: bold;
    background-image: url (img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
    }
    / * Hide the submenu in Design view
    Compensate for the LI padding on doors sliding themes * /.
    .p7PMMh04 ul div {}
    display: none;
    }
    /*
    TOP LEVEL MENU
    */
    .p7PMMh04 ul {}
    margin: 0;
    padding: 0;
    }
    .p7PMMh04 li {}
    list-style-type: none;
    float: left;
    Width: 120px;
    }
    / * Hide IE5 Mac * /.
    .p7PMMh04 li {}
    Width: auto;
    }
    / * High level links * /.
    .p7PMMh04 a {}
    display: block;
    text-decoration: none;
    padding: 2px 14px 3px 14px! important;
    color: #ffc42a! important;

    / * border-right: 1px solid #8184e6;  */

    text-align: left;
    }
    / * Link stationary when a drop-down list is not present * /.
    .p7PMMh04 a: hover {}
    color: #df8f04! important;

    / * background-color: #DFDFDF; * /
    }
    /*
    Syntax of the special classes programmatically assigned to the first and last links and also read
    See the guide the user for more information
    .p7PMMh04 ul a.pmmfirst {}
    border-left: 1px solid #df8f04;
    }
    .p7PMMh04 ul ul {a.pmmfirst}
    border-left: 0;
    }*/
    .p7PMMh04 ul a.pmmlast {}
    }
    .p7PMMh04 ul li.pmmfirst {}
    }
    .p7PMMh04 ul li.pmmlast {}
    }
    / * First void / level * /.
    .p7PMMh04 ul ul {}
    z index: 10000;
    background-color: #333;
    Width: 150px;
    background-image: url(img/pmm_carbon_subs.jpg);
    background-repeat: repeat-x;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    }
    .p7PMMh04 ul ul li {}
    float: none;

    background-color: #000;
    background-image: none;
    }
    .p7PMMh04 ul ul a {}
    padding: 4px 12px! important;
    color: #ffc42a! important;
    border-right: 0;

    text-align: left;
    overflow: hidden;
    }
    / * tread on 1st level transfer * /.
    .p7PMMh04 ul ul a: hover {}
    background-color: #333;! important;
    color: #df8f04! important;

    }
    / * Third level (launchers in the horizontal menu) * /.
    .p7PMMh04 ul ul ul {}
    border-top: 1px solid #df8f04;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #df8f04;
    }
    /*
    THE IMAGE-ORIENTED SPECIAL RULES
    */
    .p7PMMh04 img {}
    border: 0;
    }
    .p7PMMh04 .p7PMM_img {}
    padding: 0px;
    border: 0;
    background-image: none;
    background-color: transparent;
    }
    /*
    TRIGGERS and the RULES of MARK CUURENT
    The Closed state is related to the trigger elements when their kids meals are not displayed
    The open State refers to the trigger components when their kids meals are displayed
    Selectors added with _left automatically change the orientation and position of the arrow
    If additional levels are set to fly to the left
    */
    / * Void / level * /.
    .p7PMMh04 ul a.trig_closed .p7PMMh04 ul a.trig_closed_left {}
    background-image: url(img/pmm_south_medium.png);
    background-repeat: no-repeat;
    background-position: Center-right;
    }
    .p7PMMh04 ul a.trig_closed_up {}
    background-image: url(img/pmm_north_medium.gif);
    background-repeat: no-repeat;
    background-position: Center-right;
    }
    .p7PMMh04 ul a.trig_open .p7PMMh04 ul a.trig_open_up {}
    Color: #000! important;

    background-color: #DFDFDF! important;   / * It's background color of rolling main drop-down list *.
    }
    .p7PMMh04 ul ul {a.trig_closed}
    background-image: url(img/pmm_east_dark.png);
    background-repeat: no-repeat;
    background-position: Center-right;
    }
    .p7PMMh04 ul ul {a.trig_closed_left}
    background-image: url(img/pmm_west_dark.gif);
    background-repeat: no-repeat;
    background-position: left Center.
    }
    .p7PMMh04 ul ul {a.trig_open}

    color: #FFF! important;
    background-color: #424242! important;
    }
    / * The current marker (you're here) links * /.
    .p7PMMh04 .current_mark {}
    make-weight: bold;
    color: #60c3d1! important;
    }
    .p7PMMh04 ul ul {.current_mark}
    color: #FFF! important;
    }
    /*
    Rule the utility used for floats in the horizontal Menus
    */
    {.p7pmmclearfloat}
    Clear: both;
    height: 0;
    line-height: 0;
    do-size: 0;
    }
    ---------------------------------------------
    Thanks in advance for any advice,
    Jesse

    Add overflow: hidden; (as shown below) for the class selector in your stylesheet p7PMMh04.css .p7PMMh04

    {.p7PMMh04}
    Width: auto;
    height: 20px;
    margin: 0 auto;
    do-family: Arial, Helvetica, without serif.
    do-size: 11px;
    make-weight: bold;
    background-image: url (http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
    overflow: hidden;

    }

  • Why Tumblr images are not displayed, but they do in Internet Explorer?

    Mozilla has already admitted that leaking memory prevents images from multiple sources. Well, if I open Tumblr, not all the images it displays. Some simply lead to links by saying: "Access Denied", and some have simply even a URL there; There is no indication that an image is there at all. The Tumblr Windows more than I have open, the worst problem, and more each page takes to load.

    These problems do not exist on Internet Explorer 11 at the same time, looking at the same pages. Images load and display when an image is not available, a broken link icon. Something is very wrong with the image handling in Firefox 38, such a serious problem that threatens the usability of the program. When I can't get the images for books on page "Scary Go Round" of John Allison, but they instantly appear in Internet Explorer, then there is a problem quite serious here not adequately. I think you should look into this and quickly. Such, Firefox is broken, virtually useful. It is not usable for any Web page with multiple images.

    I'm spoiled at the office, as the page load all 22MB in about 11 seconds (depending on the Network Monitor of Firefox Web Console - attached screenshot section). I don't know on a normal connection it takes less than a minute to download that amount of data.

    I use the NoScript extension, so a few scripts that could possibly slow down to the bottom of the page are blocked by a load, including scripts of Radar data, scorecard research and Google Analytics.

    If the suggestions in the response of cor - el do not help, could test you mode without failure of Firefox? It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    Does not work if Firefox: Hold down the SHIFT key when you start Firefox.

    If Firefox is running: You can restart Firefox in Mode safe mode using either:

    • button "3-bar" menu > "?" button > restart with disabled modules
    • Help menu > restart with disabled modules

    and OK reboot.

    Two scenarios: A small dialog box should appear. Click on 'Start mode safe' (not update).

    Any difference?

  • Why my animations do not disappear when exporting to video?

    Hello

    Total newbie question. Startin learn Adobe animate. I want to create simple videos animated for Facebook. I thought that I would use Adobe animate to it to create the animation and then export to mp4 or mov. I did managed to make an animation, tried offshore with cmd + enter and it works well in my browser. When I export to a video the video is static. No idea why? Is it not possible to keep the animations in the movie file?

    Kind regards

    Tommie

    To make the videos that you want to use an AS3 FLA, not a canvas. If your SWF file is an animation on an image in the video export settings you want to change it to export for a while, instead of export to the last image.

  • Why windown Structure is not displayed in SQLDeveloper 4.1.2.20?

    Display - toolbars Show - Structure option is set but the windows where I can browse packets on functions and procedures is not displayed.

    I have below, a 'Properties' toolbar, but can't find where it's too. Help me, please. Thank you.

    Pretty sure it's a Jdeveloper artifact 'leaks' in the user interface of the SQL Developer.

    Is what you want, or what I think you want to right-click in a plsql editor and 'Brief overview'

    This will give you a tree for your package browser

  • Why first topic is not display in merged help?

    I created a system to help merged in RH 9, suite "Merging WebHelp - RoboHelp 8 ' of Peter Grainge steps.  When I open the file by default (index) in the parent, the first theme is not displayed and I get this error under heading:

    Internet Explorer cannot display this webpage.

    I can click on just about any subject of the structure of the table of contents and it appears correctly.

    I follow step 8 (which requires to synchronize the table of contents) and made the change in the file whthost.js in the folder of output generated for the parent and the child.

    I also tried looking for this forum before asking that question, using google, according to the guidelines as the forum search is broken. But I couldn't find anything relevant.

    Thanks for your help.

    Jenny


    When this happens, it is certainly because the path to the redirect is not right. Make sure that the relative path is correct and that the target file is where it should be.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Projects of reactive nature is not recognized correctly on mobile phones and tablets.

    I have problems with a sensitive project being displayed correctly on mobile and tablet devices.  When I use Adobe Edge inspect the test on the mobile and tablets, it renders correctly in a vertical orientation, but not a horizontal orientation (direction of the unit).  When I publish the project for devices, and then download the project on a web server to test in a browser, I get the same results for the Tablet and mobile phone doesn't recognize any mobile version.  My problem is trying to get the device to recognize the mobile version in a sensitive project.

    What I found:

    On a Tablet (iPad 2 - iOS 8) I get the tablet of the presentation version when the unit is vertical and get a desktop morphing version when the device is horizontal. (These results were the same in Safari and Chrome browsers).  When you test in Adobe Edge inspect the tablet version works as it is supposed to be the direction. 

    On the mobile device (iPhone iOS - 6 8) I get the version compressed when the device is in a vertical and horizontal orientation.  It does not recognize the Mobile version of my responsive project at all (these results were the same in Safari and Chrome browsers).  When you test in Adobe Edge inspect, the phone does not recognize the project in mobile version when it is vertical, but recognize the version of the tablet in a horizontal position.

    I do not have access to other devices (i.e. Android) to see if the results are the same.

    How I found this:

    I created a new responsive project with only 1 slide and 1 button (the button is pause the presentation).  In the view of the office, I created a "Desktop" title and hid in respect of other points of view.  I did the same thing for the Tablet and mobile, with the titles 'Tablet' and 'Mobile' which are hidden in other views.  I then published the draft for the devices and downloaded on a test server.  Here is the link to test.

    So my question is if someone else gets the same results that I am and if someone knows a solution.  What I need the most is for mobile devices to recognize the correct version in a vertical orientation in a browser.  I hope this isn't a problem with browser/phone and it is an easy fix.

    Thank you!

    Also with regard to your iPhone.

    Your IPhone memory 6 is 375px width of display window, the default value of CP is 360. That's why your iPhone 6 enter the cause of the published file tablet mode detects your iPhone 6 width is greater than 360.

    Open this site on your phone and confirm your width is 375: what is my Viewport size?

    Then adjust (increase) your mobile breakpoints in captivate to the width of your phone. It should then enter the width of your phone.

  • Cannot be displayed on the mobile phone

    I bought a new router which is a pain in the you know what EA6500, I will still have a video look at a problem on mobile phone, I have a Linksys WVC80N camera, when I had the E3000 router I use to display it using my number of service provider Internet IP and Port number, but I can not on this EA6500.  She does everything its supposed to like sending email alerts, but I can't see it on my android phone.

    You must make sure that the AlternateWebAccessPort on the camera is activated. If the use of the port is 1024, you must send the router configuration page. Also make sure that the IP Address of the ISP is the same as before.

    How to configure port forwarding on the Linksys Wireless Smart router using the local access interface

  • BlackBerry Smartphones blocking mobile messages from some mobile phones.

    Can someone tell me how to block mobile messages to some mobile source?

    Kind regards

    White Charlie

    [removed personal information]

    Hi and welcome to the forums!

    You can block in one of the following two ways:

    (1) you call block certain types of traffic of text. Go to OPTIONS/SECURITY/firewall.

    You can select the type of message to block traffic. However, this can block messages entrants all for this

    category. Example if you block the traffic, SMS, SMS messages of all will be blocked

    (2) you can call the carrier and the number blocked as spam. Depending on the amount of messages.

    You may be able to obtain from the carrier to remove the texts of your Bill.

    2 (a) If you use AT & T as a carrier, you can block and the control messages from the link below. I do not know

    If other carriers offer this service.

    http://myMessages.wireless.att.com/do/mail/settings/sendersControl

    Thank you

    Don't forget to adjust your thread. Put the check mark in the green box containing your answer! Thank you

  • Please help: why my variables are not displayed in the subtemplate?

    Hi all

    We use BEEP 11.1.1.6 (build 5.12.110)

    We have several models of rtf and some with templates.

    In this case, I declared a variable var1 in the upper part of the main model.
    I also said variable var2 in the subtemplate.

    In the subtemplate, I added this command:
    var1:<?xdoxslt:get_variable($_XDOCTX, 'var1')?>
    var2:<?xdoxslt:get_variable($_XDOCTX, 'var2')?>
    var2 always displays normally.
    var1 is always null (RC = NaN when I pass it as a parameter to the submodel)
    The value appears correctly the second main folder of XML data.


    Is there something wrong in my code?
    Is there a reason why the variable is NULL in the first record of the main loop?

    Please find attached an example with different variables and params:
    https://FTS.Capgemini.com/pubpwd/66814124735400/XML_Publisher_test.zip link is valid until 2013-05-13 13:00 UTC (access with local public password)
    Username: ijtzggnrz
    Password: uP8YrdRPKc

    I hope my explanation is clear.
    Thanks in advance,
    Olivier

    Look at the response of amri in Obtaining Variable in footer of RTF
    >
    Variables when declared in the body section are not available in the scope of the header/footer.
    So you can't put in the body section and see the same thing in the header/footer.

    I think you want to have the header/footer conditional for some sets of pages. If you can explain your condition here we offer if this is possible.
    >

    and the response of the Vetsrini in the use of variables within a foot of the RTF template
    >
    Footer is in a different context,

    If you will not be able to use the variable declared in the page inside the footer,

    try to create a sample footer variable is assign a value and displays
    you will be able to display that correctly...

  • Why Internet Explorer does not display an outline around the hot spot, I just clicked on that?

    Hi all

    Why Internet Explorer display a contour around the area hotspot, I just clicked on? what should I do to resolve this?

    can anyone help Please

    gman

    Hello

    They said, it works with hotspots also. I have would not otherwise be sent.

    Hans G.

Maybe you are looking for