Animated gif is not moving in the FireFox 3.6.3 ?

why animated gif is not moving in FireFox 3.6.3 ?
== This happened ==
Every time Firefox opened

Same problem in save mode. An animated gif will not start. No offending plugins or themes are installed.
But if I right-click on the animation and then on "Grafik-Info anzeigen" (maybe "show grafic info") then as soon as the info window starts the animation, it is also started in the browser!
And this error does not happen on all machines. My Win7 64bit does it right. My XP 32bit (freshly updated) freezes the animation. Weird world.

Similar Messages

  • Chinese characters are not displayed in the Firefox bookmarks

    Chinese characters are not displayed in the Firefox bookmarks. The name looks like e.g. "??????? ???? cn.nytimes.com"
    Chinese character of the site name is displayed ok in the head of the browser window and there is no problem reading chinese web content. I use Firefox Portable 11 /English from portableapps.com in Windows XP.
    I googled and got some tips:
    1) Set your browser to recognise Chinese language internet sites.
    Windows users: Under "Tools - Options" on your browser's menu-bar add Chinese to the languages list.
    - I did this.
    2) Set your browser's "Character Set" or "Encoding" to UTF-8 (sometimes also called Universal Alphabet or Unicode).
    Encoding settings can be changed under the "View" option in your browser's menu-bar.
    - It was already set to UTF-8.
    3) Windows users: If Chinese text still does not display correctly, East Asian language support may need to be enabled.
    - This has been done when I installed Windows.
    I still don't get any Chinese fonts in the bookmark names. I can edit the bookmark name with chinese characters and then save the bookmark, it works fine. But why does not Firefox recognize the characters when saving bookmarks? Help is appreciated.

    No I didn't change anything deep beneath the hood. My problem didn't apply to the URL, but to the name of the link or bookmark header or whatever you would like to call it. (When hitting Ctrl + D there is a Name field). I only got ???????? instead of chinese characters in the name. Also for e.g. www.cntv.cn ...but maybe all China is not in the whitelist either. ;-) But anyway, this was not the real problem for me.
    Apparently I was wrong as after a reboot of the computer it worked. The solution seemed to be to add Chinese to the language list. I don't know why it was not enough to restart Firefox?
    Now I only have problems to show chinese characters in the name field of my external link manager... But I guess it is not an issue for Mozilla.

  • Travel Expenses through ESS Not Moving to the MSS of Immediate Boss

    Dear Gurus,
    After the travel request has been approved by the immediate boss on MSS, employee is creating the Travel expense
    report for the same request number through ESS.
    But After saving and Sending the travel expense report for Approval through ESS by the employee,
    Expense report for Approval is not Moving in the MSS of his Immediate Boss.
    Kindly suggest how to achieve this, Immediate boss should approve/Reject the Travel Expense Report through MSS.
    Any standard workflow existing for this ?? For Travel Request we are using 20000050 and it is working fine.
    For Travel Expenses through ESS:-
    We have already activated 20000040 and configured the same in T Code SWETYPV.
    Object we are using is BUS2089.
    Kindly let me know which Event and Functional module is configured in T Code SWETYPV.
    Or any other steps we are missing Or any other Workflow to be used to achieve this ???
    We need Travel Expense Approval on MSS by the immediate Boss.
    Regards,
    Edwin

    Hi,
    Try checking agent assignments of task TS 20000135:
    Tcode PFTC:
    Task type: Standard Task
    Task: 20000135
    Display
    From top menu choose: Additional data --> Agent assignment --> Maintain
    Click "Attributes..." and chooce "General Task" and then "Transfer".
    Then click Red and White ball icon (refresh index Shift+F1).
    Check also (using SWDD) that WS20000040 has agent maintained for task 20000135. I am not sure if it is there in standard. You can choose superior of the initiator rule from drop-down if it is not maintained.
    Regards,
    Saku

  • My upgrade does not look like the firefox 4

    After upgrading to firefox 4 I still have the old style border around the browser. Also when I hide the menu bar the Edit View, History etc. do not go to the firefox drop down tab.

    Try:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Resized animated gif ImageIcon not working properly with JButton etc.

    The problem is that when I resize an ImageIcon representing an animated gif and place it on a Jbutton, JToggelButton or JLabel, in some cases the image does not show or does not animate. More precicely, depending on the specific image file, the image shows always, most of the time or sometimes. Images which are susceptible to not showing often do not animate when showing. Moving over or clicking with the mouse on the AbstractButton instance while the frame is supposed to updated causes the image to disappear (even when viewing the non-animating image that sometimes appears). No errors are thrown.
    Here some example code: (compiled with Java 6.0 compliance)
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test
         public static void main(String[] args)
              new Test();
         static final int  IMAGES        = 3;
         JButton[]           buttons       = new JButton[IMAGES];
         JButton             toggleButton  = new JButton("Toggle scaling");
         boolean            doScale       = true;
         public Test()
              JFrame f = new JFrame();
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel p = new JPanel(new GridLayout(1, IMAGES));
              for (int i = 0; i < IMAGES; i++)
                   p.add(this.buttons[i] = new JButton());
              f.add(p, BorderLayout.CENTER);
              f.add(this.toggleButton, BorderLayout.SOUTH);
              this.toggleButton.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e)
                        Test.this.refresh();
              f.setSize(600, 300);
              f.setVisible(true);
              this.refresh();
         public void refresh()
              this.doScale = !this.doScale;
              for (int i = 0; i < IMAGES; i++)
                   ImageIcon image = new ImageIcon(i + ".gif");
                   if (this.doScale)
                        image = new ImageIcon(image.getImage().getScaledInstance(180, 180, Image.SCALE_AREA_AVERAGING));
                   image.setImageObserver(this.buttons);
                   this.buttons[i].setIcon(image);
                   this.buttons[i].setSelectedIcon(image);
                   this.buttons[i].setDisabledIcon(image);
                   this.buttons[i].setDisabledSelectedIcon(image);
                   this.buttons[i].setRolloverIcon(image);
                   this.buttons[i].setRolloverSelectedIcon(image);
                   this.buttons[i].setPressedIcon(image);
    Download the gif images here:
    http://djmadz.com/zombie/0.gif
    http://djmadz.com/zombie/1.gif
    http://djmadz.com/zombie/2.gif
    When you press the "Toggle scaling"button it switches between unresized (properly working) and resized instances of three of my gif images. Notice that the left image almost never appears, the middle image always, and the right image most of the time. The right image seems to (almost) never animate. When you click on the left image (when visble) it disappears only when the backend is updating the animation (between those two frames with a long delay)
    Why are the original ImageIcon and the resized ImageIcon behaving differently? Are they differently organized internally?
    Is there any chance my way of resizing might be wrong?

    It does work, however I refuse to use SCALE_REPLICATE for my application because resizing images is butt ugly, whether scaling up or down. Could there be a clue in the rescaling implementations, which I can override?
    Maybe is there a way that I can check if an image is a multi-frame animation and set the scaling algorithm accordingly?
    Message was edited by:
    Zom-B

  • Animated gif files not working in FF5 ok in every other browser

    Hi .
    I am having problems getting animated gifs to play in firefox 5 i am using a photo gallery script to show these files it works in every other browser i have access to (most of them on Linux and windows Xp and win7 ) if i use FF5 as a file manager and navigate to the files they run but not from a web page this is only with firefox 4 and 5 not got previous to 4 to test .

    Right . this looks like it may be a problem with the way FF5 is handling various methods of viewing images i use the following code .
    <pre><nowiki><a class="thumbnail" href="#thumb"><img src="photos/IMG_7039 EOS-1D Mark III copy.jpg" width="100px" height="75px" border="0"><span><img src="photos/Animations/IMG_7039 EOS-1D Mark III copy.gif"></span></a></nowiki></pre>
    along with css .
    <pre><nowiki>(
    .gallerycontainer{
    position: relative;
    /*Add a height attribute and set to largest image's height to prevent overlaying*/
    .thumbnail img{
    border: 1px solid blue;
    margin: 0 5px 5px 0;
    .thumbnail:hover{
    background-color: transparent;
    .thumbnail:hover img{
    border: 1px solid blue;
    .thumbnail span{ /*CSS for enlarged image*/
    position: fixed;
    background-color: lightyellow;
    padding: 5px;
    left: -600px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    .thumbnail span img{ /*CSS for enlarged image displays the large image*/
    border-width: 4;
    padding: 12px;
    .thumbnail:hover span{ /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 230px; /*position where enlarged image should offset horizontally */
    z-index: 50;
    )</nowiki></pre>
    to create the gallery now if i navigate directly to the dir with the gif images in they work ok but if i use the gallery method they fail .
    Tried safe mode no addons no change ..

  • Animated gif images not working, n73 problem pleas...

    my phone is n73music. when i try to use animated or gif images as wallpapers, the images are not moving as they should do in standby mode on the display. what could be the problem, please advice. thankyou.

    Sorry, N73/ME is a s60 phone and s60 doesnt support moving animated GIG, PNG file format as wallpaper

  • Animated gif will not stop when placed in director

    I have an animated gif I am trying to place into a director
    file.
    When its placed and I press play it will play the animated
    gif over
    and over. I also took the gif and saved it as a swf file
    placed it in
    director it does the same thing. Please tell me what I am
    missing.
    Also I will show the dir file if you need to see it.

    Oops - wrong button - didn't mean to send that yet...
    anyway...
    You don't have much control over Animated Gif members in
    Director. You
    can use
    sprite(animGifSprite).pause()
    to stop the animation and
    sprite(animGifSprite).resume()
    to restart it. The tricky bit is knowing when to do those
    things.
    There is no way I know of to find out if the sprite is at the
    end of
    it's image sequence.
    Perhaps a better way of going about it would be to take the
    animation
    apart into individual frames and load them into a swf member
    (in Flash)
    or a Film Loop in Director. You may have more control over
    the
    animation that way.
    The fact that it keeps repeating over and over again is sort
    of the
    point of an animated gif... though I believe that you can
    make an
    animated gif that specifically does not loop back to the
    start using
    ImageReady or the newer version of Photoshop. Though I have
    not tried
    this...

  • Animated Gif/movie not following build order

    Animated Gif/movies do not build in proper order.
    For example, I have an animated clock that is suppose to come in as Build No 29
    and run. However, it loads as though it is Build item No 1.
    It does run at the proper time in the build.
    Must I hide it with color or other tricks. The problem is it shows immediately as the
    slide builds and looks hideous.

    Never-mind. I have it working properly now.

  • Animated GIF's not working 5310

    I've tried to use some animated GIF's for screensavers, but I'm not getting the animation !!
    They work OK in windows.
    Can someone confirm what size and format they need to be for my 5310 XpressMusic
    Thanks
    Solved!
    Go to Solution.

    Restarted phone and their working now.
    Thanks

  • Animated gif does not work in spry region

    Trying to display an animated gif while xml file is loading.
    The gif displays while loading but does not animate in the spry region.
    <div spry:region="dslistings">
    <div id="loadXML" spry:state= "loading"><img src="loadinganimated.gif"/></div>
    <div spry:state="ready" </div>
    Thank you in advance for any help.
    Jeff

    I believe you are correct, I tried to place the same animated gif outside of the spry region
    and it also did not animate until the xml (approximately 500 records) loaded and completed displaying.
    Once the xml loaded, the gif outside of the spry region started to animate.
    So how then could you display some sort of animated loading indication?
    Thank you
    jeff

  • Animated gif do not work properly on N85

    I bought recently an N85 and downloaded some animated gif pictures and they do not run fluently as they should. The SAME gifs work great on both the E51 and 5700. What is the problem with the new photo viewer in N85?
    Another issue I have with the photo viewer is that I transfered 50 photos to the memory (Sandisk micro SDHC Ultra 8gb class 6) and when I browse the photos its very slow and some pictures are pixely for a long time when viewing them.

    So, it is a general problem in iOS 8.x.x
    Awesome....
    So I got a ridiculous slow ipad 3 with lots of glitches and not working multigestures.
    Is this the the uncomparable user experience which Tim Cook is talking about?

  • Publishing to an animated gif does not seem to work properly

    I want to export a portion of my .fla movie clip into an animated .gif (the logo part).  So I changed the publish settings to output to .gif. and made sure the 'animated' box was checked.  When I publish, it does output to a .gif file, but it is not animated at all and the colors are not correct which makes the text unreadable.  It almost seems like it's outputted a single frame of the movie.  It definitely does not look like a proper output.  When I change the output back to .swf and publish, it turns out just fine and it's animated with all the desired effects.  Does anyone have any idea why this is?
    I would hate to have to find a program to convert my .swf to .gif.  If I have to do that, does anyone recommend a good program for it?

    I believe you are correct, I tried to place the same animated gif outside of the spry region
    and it also did not animate until the xml (approximately 500 records) loaded and completed displaying.
    Once the xml loaded, the gif outside of the spry region started to animate.
    So how then could you display some sort of animated loading indication?
    Thank you
    jeff

  • Application not working in the firefox browser?

    Hi,
    My application is perfectly working in the Internet Explorer( displays all the UI elements ) . but today i installed the firefox browser.
    The application is not showing all the UI elements ,tables etc .
    What should be done to work the application in Firefox browser ?
    Regards,
    Lakshmi.

    Hi,
    Please go through this link -
    https://forums.sdn.sap.com/click.jspa?searchID=30476121&messageID=7716841
    Regards,
    Lekha.

  • Animated GIF Doesn't Play To The End

    I've created a simple animated GIF in Photoshop CS6, eight seconds long, 30fps.
    I have several layers that fade out at and then more layers that fade IN at four seconds. It plays perfectly in Photoshop, but a rendered GIF doesn't play entirely to the end - it stops prematurely.
    How do I fix this?  I've tried the animated GIF in a browser and it does the same thing in a PPT slide.
    Anyone?
    Thanks.

    Thank you, Nancy.
    I just reduced my project file down to 15fps and three seconds long.  Testing the animation in the Save for Web dialogue box I see that it still won't play to the end.  The fade-in stops before it's at 100% opacity.
    The rendered GIF file size would be 242k.  I HAVE to use Save for Web, as Save As will discard hidden layers and animations.
    Still can't figure out what causes this, and I've had this happen to me before.  (I bet I wouldn't have this problem rendering out of After Effects.)

Maybe you are looking for