Animated GIFs won't display properly in Mail.app

I have a weird problem with animated GIFs received as attachments in Mail.app. On my Mac mini, they're only displayed as the first frame within the Mail message window and the animations don't play. But on my iMac G4, the same messages display the animations properly within Mail.app. Both Macs are currently running Mac OS X 10.4.4, but I've observed this problem since 10.4.3. I have the same software installed on both machines. Does anyone have any ideas why this is happening?

  * Test.java
  * Created on January 13, 2007, 6:52 PM
  * To change this template, choose Tools | Template Manager
  * and open the template in the editor.
package Test;
import javax.swing.*;
import java.awt.*;
import java.util.*;
  * @author Calbrenar
public class Test extends JFrame
    private JList testList;
    private DefaultListModel listModel;
    private JScrollPane serverLogScroller;
    private Container container;
    /** Set up GUI */
    public Test()
       super ("List Test");
       //Get content pane
       container = getContentPane();
       container.setLayout(new FlowLayout());
       listModel = new DefaultListModel();
       listModel.addElement("");
       testList = new JList(listModel);
       testList.setVisibleRowCount(1);
       //testList.setFixedCellHeight(35);
       //testList.setFixedCellWidth(400);
       serverLogScroller = new JScrollPane(testList);
       serverLogScroller.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
       serverLogScroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
       container.add( new JScrollPane( testList));
       setSize(700, 75);
       setVisible(true);
    public void addStatus(String str)
       listModel.add(0, str);
       //testList.setPreferredSize(new Dimension(400, 15));
       //serverLogScroller.revalidate();
       container.validate();
    public static void main ( String args[])
       Test application = new Test();
       application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
       application.addStatus("-ERR");
       application.addStatus("+OK Enter Password");
       application.addStatus("-ERR Bad Pass");
} // end class Test

Similar Messages

  • Photo page won't display properly in safari

    Hi everyone!
    I'm completely new to building websites and need some of your expert advice?
    For some reason my photo pages won't display properly in Safari but ok in Firefox?
    It worked fine a week ago and I can't think what I've done wrong since I republished last night?
    http://www.abeledo.talktalk.net/losavellanos/House.html
    Can anyone help?
    I'll buy you a pint!
    Cheers

    No luck unfortunately.
    I changed the background to a solid and made the changes that you suggested roddy, but neither seemed to work. I know I must be doing something wrong? Do the photos appear ok with you roddy? All I see, is half the page i.e nav bar, top image, 'the house & garden etc text and top half of the darker box where the thumbnails should appear. And this happens with all 3 photo pages currently on the site.
    http://www.abeledo.talktalk.net/losavellanos/House.html
    http://www.abeledo.talktalk.net/losavellanos/Teror.html
    http://www.abeledo.talktalk.net/losavellanos/The_Island.html
    I've been clearing my cache in both browsers every time I republish.
    I've also tried upgrading to the new 3.0.3 beta Safari? You'd think - out of all the browsers- iWeb would work seamlessly with Safari wouldn't you? - Firefox is fine.
    Do you think I should start from scratch?

  • Animated Gifs won't animate when forwarded to other people from mail...

    I received a cute series of animated gif files via email today. I decided to forward the mail to a few friends and included myself on the list since I've had issues with forwarded gif files not animating in the past. Several friends received the files in working order. Others, including myself, received what appear to be the first frame of each of the animations but not animating at all.
    Any suggestions?
    Bruce

    try another usb port but usb is a poor way to charge the batt.
    if you look under menu/settings/batt, at the bottom it says you won't show a full charge with usb charging.
    i have the phone off & charge with wall adapter for 3 hours.

  • Animated Gif won't stop looping!

    I'll try to format my question as best I can.
    I have created a Java chat applet, and for the Java chat, I have created a "ChatPane" class for displaying the chat. ChatPane is an extension of Canvas, and every time the paint() method is called, the program loops through visible lines of text drawing them on a buffer image, then draws the buffer on the screen.
    My problem lies in animated gifs. In my chatroom, chatters can type textual symbols that will be replaced with an image (or emoticon). I have created my animated icons in a popular animated gif editing program, and I have set particular icons to loop 3 times. The problem is that when the animated icon is displayed in my applet, the animation -doesn't stop- after 3 loops, it loops forever! I can't for the life of me figure out why! Can anyone provide any insight as to why the animations won't stop after 3 loops? The animations work just fine if displayed in a browser by themselves (they stop looping after 3 times)
    Thank you for any help!
    [email protected]
    Tony N.

    From what I understand of your problem;
    - You have made your own animated gifs
    - With the software to make these gifs you have set them to loop their animations 3 times
    - They loop continuously
    I don't see how java can be expected to interpret the animated gif software instructions to loop only 3 times and would assume that there are various proprietry ways of setting this (an assumption based on applets /javascript etc, that rely on the client-side browser interpreter). So, if you loop your animated gif or have any form of animated gif that you import into your program with getDocumentBase /getCodeBase as a (pre-animated) gif, then this is exactly what I would assume would happen.
    The answer is to seperate your images with eg;-
    smiley1[0];
    smiley1[1];
    smiley1[2];
    run a seperate thread, cycle through them as you wish and stop.
    I'm fairly sure that there is nothing in either the swing libraries or the jmf libraries that can resolve this any other way, so your choices are write extra code and have a pool of threads to control this, or leave it as is.

  • Problem with animated gif image getting displayed

    My problem is that my animated image does not get displayed properly. I am extending JButton and the button already contains a static image. I want to display the animated image over the static one for some reason. If I replace the animated image with a static gif, then there is no problem.
    Here is the code that I am using
    Icon anim = new ImageIcon((new ImageLoader()).getImage("/graphics/busy.gif"));
    // thread to call displayAnim method
    class ColorThread extends Thread {
    ColorThread() {
    public void run() {
    while (AnimFlag) {
    try {
    displayAnim();
    Thread.sleep(400);
    } catch (InterruptedException e) {
    public void displayAnim()
    repaint();
    public void paint(Graphics g)
    super.paint(g);
    int x=5;
    int y=0;
    if ( AnimFlag) {
    anim.paintIcon(this,g,x,y);

    This code is working fine for JRE 1.2 and the animation is displayed. The problem is with JRE 1.3. when there is no animation, neither is there any image getting displayed.

  • 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 won't animate or not even show at all

    I have been using animated GIF with no problem so far but now with iWeb 08 sometimes it works with certain GIFs documents or sometimes won't with other GIFs documents. Why ? And what can I do about this ? What is the solution ?
    Message was edited by: Ti-Jean

    Well Bababooey if you're comparing yourself to a Apple Genius Bar then you should already know my answer, your snarky remark get a snarky reply.  Why would I go to a salesperson to fix my computer problem when I can go directly go to the source itself.  I used to sell Apple computers over 8 years ago and was apple certified before the Genius bar existed. If I am to go about fixing an issue I can't fix on my own I will go to the source itself meaning Apple's programmers and developers - being UI UX Developer myself I know they should have QA'd all platforms and troubleshooted any arising issues. 
    This was also the first time in the 20 years I've been using a Mac that I even attempted to go on this forum which i thought would put me in connection with a certified Apple representative.  This turned out to be a complete waste of time just being a public forum with no Apple employee involved.  I was hoping to find a quick fix but in turn I was only frustrated with stupid responses such as yours that were in no way an answer to my original question. 
    BTW I fixed the issue on my own and without your help or Apples help. I'm glad if all forums point here regarding this issue because I now have the answer. The answer I was looking for from someone earlier was as simple as this {Download Maverick and reinstall the platform - it will take an hour to do but afterward 10.9.2 was installed and my computer is now able to shutdown and restart without having to do a hard boot.}  No more software update bar at top and no problems with my drive which I told both you and Grant - I know my computer better than you and I've probably been using them longer than you. 
    So again Babowa you were so wrong...... and I am right.
    Again anyone having the same problem, I suggest reinstalling Maverick and you'll be suprised 10.9.2 will work fine.

  • Using an animated gif/other to display series of images within another image?

    I design custom baseball cards for a hobby, and am wondering if I can use an animated GIF inset within a large photo to display a rotation of images.
    It is easiest if you look at the "card"/image . . . within the circle, where there is a picture of Ruth holding some bats, I would like to add a series of several images that would rotate through (obviosuly the "card" would be for viewingonline rather than printing).
    Is it possible to do?  I am thinking an "animated gif" would be the easiest, but if there is some other way (video, etc.). I am open to that.
    I just would like to know if the goal can be done, and if so, how to do it.
    TIA!!!

    That can be done with a gif.  You just set up your bg image, then have a series of layers for your insert.  Create a frame animation by opening it in Window>Timeline.  Have all your insert layers except one turned off.  Create a new frame, the turn on the next layer.  Keep repeating creating a new frame and turning on a new layer.  When you're done, you can set the time each frame displays.  Save it using save for web using the gif option.

  • Fonts Will Not Display Properly In Mail

    Messages that I am receving in Mail will not display properly. All characters are represented with square with the letter A. I attached a screen shot.
    I changed the default fonts to many different options and nothing has worked.
    Any help would be great.

    Open up Font Book and validate your fonts.  You may have a corrupt font or corrupt font database.

  • The Edge animation is no longer displaying properly on the Chrome browser

    The animation is at www.advantageind.com. It's fine on Firefox or Safari. The gear should rotate in a circle but on Chrome it spins in one spot. It was displaying properly until about 4 days ago. I've had other people look at it on their laptops and desktops in Chrome and they've seen the same problem. I'm using Chrome v.36.
    Any suggestions?
    Thanks.

    Hi,
    I try with IE 11, It's fine too.
    need's further investigations.....
    In Google Chrome  inspector for the rotating element  I put 50% in a third values of transform-origin, (marked in bold),
    it's work fine in Chrome.
    <div id="Stage_headeranimafin6_6_Gear_0000_gear-icon-copy2" class="Stage_headeranimafin6_6_Gear_0000_gear-icon-copy2_id" style="position: absolute; margin: 0px; left: 139px; top: 76px; width: 316px; height: 614px; right: auto; bottom: auto; -webkit-transform-origin: 154.35% 48.7%; transform-origin: 50% 50% 0px; -webkit-transform: translate(0px, 0px) translateZ(0px) rotate(2492.355deg) scale(1, 1);</div>
    it's a bit strange too because referenced to W3C there is just two values for rotating element
    By.

  • Animated .gif won't loop a specified amount of times

    I created an animated .gif in photoshop and set it to loop twice. It works fine in every other browser except firefox. Here is a test example:
    http://elliottkirby.com/test/
    The box is set to animate across twice. Any thoughts? I tested setting it to loop "forever" and it works in FF...however the ad I'm creating has a loop time limit. I checked my config settings and image animation is set to normal. Thanks!

    From what I understand of your problem;
    - You have made your own animated gifs
    - With the software to make these gifs you have set them to loop their animations 3 times
    - They loop continuously
    I don't see how java can be expected to interpret the animated gif software instructions to loop only 3 times and would assume that there are various proprietry ways of setting this (an assumption based on applets /javascript etc, that rely on the client-side browser interpreter). So, if you loop your animated gif or have any form of animated gif that you import into your program with getDocumentBase /getCodeBase as a (pre-animated) gif, then this is exactly what I would assume would happen.
    The answer is to seperate your images with eg;-
    smiley1[0];
    smiley1[1];
    smiley1[2];
    run a seperate thread, cycle through them as you wish and stop.
    I'm fairly sure that there is nothing in either the swing libraries or the jmf libraries that can resolve this any other way, so your choices are write extra code and have a pool of threads to control this, or leave it as is.

  • Animated gif won't work in safari

    I put an animated gif in iWeb and it runs fine in the site in Windows IE 7 and Firefox 3.5, and on my Mac in Firefox, But you can just see the initial frame in Safari.
    Actually I put two on there, the little flag works (has a transparent layer over it to make it clickable), but the bigger one, with 13 layers, does not.
    Is there something in Safari that I need to set?
    http://www.widman.biz/Corvair/English/English.html

    I've been having the same issue. gifs from the web load fine in firefox, but i safari they take forever.
    Also I've noticed that a lot of streaming videos that used to stream just fine are now choppy and start and stop due to slow load times.
    Any help appreciated.

  • Animated GIF won't Animate while page is loading

    Hi all,
    I need my animated gif to be animated while other page elements are loading, but it is frozen until the page loads. Any advice?
    Regards,
    Kelly
    Personal Blog: http://thebitsthatbyte.com

    There are few options available, refer to the following posts,
    http://stackoverflow.com/questions/5829382/animated-gif-while-loading-page-does-not-animate
    http://www.webdeveloper.com/forum/showthread.php?90647-RESOLVED-ie-animated-gif-freeze-til-page-loads
    http://forums.asp.net/t/1814498.aspx?loader+gif+IE+problem
    --Cheers

  • 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?

  • GoDaddy site won't display properly

    I have been working with a client's Dreamweaver site; however, when I went to upload it to GoDaddy, the pages and images don't display properly.  How can I fix this?
    Will I need to change the links for every missing graphic, so that they come directly from the root?  Is there an easier way?
    This particular site has multiple level and sub-folders, etc.
    Please HELP!!!!

    Thank you so much!  I hadn't thought about that.  Since it's a one-time fix, I'll go through and change any absolutes to relative.
    Thanks again.
    Sincerely,
    Lynn

Maybe you are looking for

  • GRN cancelled and again reciepted for already payment done PO

    Hi, In our client side a GRN was cancelled and rebooked for the PO for which the payment already done. How SAP allows this and how can we stop this? Regards

  • To Overcome This  Exception in thread "main" java.lang.NoClassDefFoundError

    I downloaded "j2sdk1.4.1_01" software form java.sun.com...after installing and when i was running hello world program..i was receiving this error...this is really menacing..as iam not able to find any solution for this even on the net..somebody pleas

  • Help with scrollable frames...

    If I put a Landscape ad in a portrait frame and do a scrollable frame on that ad, how do I get to the next page of content when that requires a horizontal swipe? Thanks

  • Jpeg error code from out of nowhere

    Hello, Several years ago, I scanned an entire high school yearbook and simply named each scan to correspond with the page number. I've been opening these files for years. For reasons unknown, almost all the files that have the term "Seniors," "Junior

  • Has anyone heard anything definitive?

    It's been a week since the OS4 update now, and my 3G is pretty unusable. I've lost all my data and my phone won't restore or sync, so I have no contacts, no email, no messages and empty apps. My phone is behaving weirdly too, I keep getting texts thr