Using animated gifs  in emails

I've made an animated gif using flash an am trying to make it
so the gif appears in my signature at the bottom of every email. I
can place it in the signature but when I send the email the gif is
static and doesn't move. Also I'm using a mac and when I recieve an
animated gif in an email from a PC the gif is also static. I need
to be able to send animated gifs in emails from PC and Mac using
Mircosoft Outlook for PC and Entourage for MAC. Any help would be
much appreciated.
Cheers,

this really has nothing to do with flash at all - you have no
control over this as the recipient of
your email may not be using an email client that supports
animated gifs - does your gif work when
viewed ina web page?
you must realize there are a myriad ways people check email -
sometimes via a browser, handheld
device, email client software, etc...not all support animated
gifs and the ones that do may have
that option turned off by user.
i would consult the support section of the email software
your recipients use.
--> **Adobe Certified Expert**
--> www.mudbubble.com
--> www.keyframer.com
Luke H wrote:
> I've made an animated gif using flash an am trying to
make it so the gif
> appears in my signature at the bottom of every email. I
can place it in the
> signature but when I send the email the gif is static
and doesn't move. Also
> I'm using a mac and when I recieve an animated gif in an
email from a PC the
> gif is also static. I need to be able to send animated
gifs in emails from PC
> and Mac using Mircosoft Outlook for PC and Entourage for
MAC. Any help would be
> much appreciated.
>
> Cheers,
>
>

Similar Messages

  • Animated Gifs in Email

    I want to attach animated gifs to my email messages. When I do, the images stay static and aren't animated.
    My PC friends use Outlook Express to compose their email, and the animations work fine. I checked the information for Entourage and found that it doesn't support animated gifs. Does anyone know how to do this on the Mac, using Tiger 10.4.11?

    Mulder,
    I went to the site you mentioned, downloaded an animated GIF, and sent myself a test email. When it didn't work, I went back to that site's help menu and have copied what it said below:
    "How to use animated GIF Images
    For use in web pages: see Image Usage & Linking Policy
    For use in Microsoft Outlook: In Outlook 2003 and earlier, an animated image can be incorporated into the email text, only when using the HTML format. Position the cursor at the point where the image is to appear and select Insert/Picture.
    When using the Word editor for composing email messages, the image will not animate. Outlook 2007 does not support animation in any format.
    For use in Microsoft PowerPoint: You should not have any issues inserting and viewing animated images."
    I checked your response carefully and found that the only difference is that you have a signature set up for your emails, and I do not.
    I went to the Eudora site and they support animated GIFs if you sign up for their "paid" program. I couldn't find out the cost anywhere and suspect that it shows up after you've downloaded the program. I'm not familiar with the Balzac client but will check it out. I don't compose my emails using HTML. I simply use the Mail program and format my text using the font and color menus. Is that how you do yours? (I'm still looking for that "extra ingredient" that you have [besides your brain] that makes yours work.)
    Thanks again.

  • Animated gif in email

    I have a gif file which is animated when it's sent to me from a windows user. The gif is actually 10 images and when animated, it shows a coyote walking. I can't seem to get it to animate when I send it. Ideally, I'd like to add it to my signiture. Any idea what's going on and how to do this?

    Hi Marian,
    I agree 100%...Unfortunately, We want to add a little bit of animations to our evites..nothing extravagant, but many of our in-house folks and clients use Outlook. We initially started to use the Word option, because we didn't want the emails to be just background images, as there were other issues.... but we couldn't send them as attachments either, as we wanted the evite to be in the body when they opened the e-mail, not an attachment. If you have any other suggestions about how we could use an animated gif in the body of an e-mail to show up in outlook, I am all ears!!! Of course, like Jeffery points out, if Outlook won't play them anyway, then we simply can't do it. I just have to believe there is some way to do this that will work for outlook as well???
    Any thoughts or suggestions are greatly appreciated!!!
    Thanks!
    babs

  • Animated gifs in emails

    I was in a chat with microsoft and they said that because our outlook is run through an exchange server this may have something to do with why our gifs are not animated in emails we receive.
    What can be done to fix this?
    Thank you in advance for your help.

    Hi,
    Which version of Outlook are you using?
    If you are using Outlook 2007 or later version of Outlook, Outlook won’t display the animated gifs.
    Only a static representation of the GIF image shows.
    Outlook 2007 and Outlook 2010 use only Microsoft Office Word as the email editor while Outlook 2013 uses a Word-based email editor. Neither of the two email editors supports animated gifs.
    For more information, please refer:
    http://www.howto-outlook.com/faq/wordhtml.htm
    As a workaround to view animate gif images, we can view the email in Browser. To do this, double click to open the message, and then click
    Actions button > View in Browser.
    To make it easier, we can write a macro to directly display Outlook message in a browser, see:
    http://www.howto-outlook.com/howto/openinbrowser.htm
    Regards,
    Steve Fan
    TechNet Community Support

  • Using animated GIF as JButton icon

    Hi,
    I am trying to use an animated gif as an icon in a JButton.
    Everything works as it should except the animation is static!!
    Screenshots and code are at:
    http://www.beammicrosystems.com/Java/JButton.html
    Anyone got any good ideas?
    Regards,
    Andrew

    well i think you can do this in a label you can watch for a animation like you want a gif so my idea is that you should just make the label as a button and them :
    JLabel label = new JLabel();
    label.setIcon = new ImageIcon("name.gif");
    and put it the setBounds
    label.setBounds(x,y,long,tall);
    and if you want that looks like a button just do this
    label.setBorder(BorderFactory.createRaisedBevelBorder());
    thats all.

  • Using animated gif...

    I've encountered a problem in displaying animated gif using java Swing.
    For my program, I need to display 6 animated gif images. Sometimes I would get all those displayed, but sometimes only 1 or few are displayed.
    This problem troubles me until I found that it is the problem of animated gif I've used, because I have tried to replace the animated gif to static ones then every time the images are all displayed.
    I need a help urgently. Thanks a lot in advance.

    Hi
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class Dance extends JFrame 
    public Dance()  
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         getContentPane().setLayout(null);
         setBounds(10,10,400,300);
         JLabel j1 = new JLabel(new ImageIcon("cut1.gif"));
         j1.setBounds(10,30,40,40);
         getContentPane().add(j1);
         JLabel j2 = new JLabel(new ImageIcon("cut2.gif"));
         j2.setBounds(50,70,40,40);
         getContentPane().add(j2);
         JLabel j3 = new JLabel(new ImageIcon("cut3.gif"));
         j3.setBounds(90,110,40,40);
         getContentPane().add(j3);
         JLabel j4 = new JLabel(new ImageIcon("cut4.gif"));
         j4.setBounds(130,150,40,40);
         getContentPane().add(j4);
         setVisible(true);
    public static void main (String[] args)
         new Dance();
      Noah

  • Datagrid using animated gif or flash

    I have a datagrid that is using an image control for its item
    renderer on one of the columns. That works just fine but I would
    like to be able to display an animated image in the datagrid
    instead of a static one.
    I know flex doesnt support animated gifs but is there any way
    I could make it show one in a data grid?
    Thanks.

    If you are web deployed you can put an animated gif as the image to an iconic button.
    Image items cannot display animated gifs.
    Anything else you can do through a JavaBean if you need to.

  • Using animated gifs with transparent background.

    Hi guys,
    Keynotes 6.2.
    I have been onto apple support with this problem.
    I add a transparent animated gif to my project.
    It show as a movie correctly in the presentation but when exported as quicktime or HTML the movies fail.
    We eventually found out that quicktime does not support animated gifs. ( support.apple.com/kb/ht3775 )
    So I exported the animation onto a folder with all the frames separately and brought them into final cut pro.
    I then followed these tutorials on how to export with transparent background. ( http://provideocoalition.com/mspencer/video/fcp-x-and-alpha-channels and http://www.larryjordan.biz/fcp-export-transparency ).
    I now have a quicktime movie that if I bring back into Final Cut Pro it has a transparent background.
    However when I bring into keynotes it still has a black background. (presumably keynotes does not recognise the  Apple Prores 444).
    Any ideas how I can achieve what I need. ?
    I am using a program called crazytalk animator and can output with transparent background. Animated Gif or a series of image stills BMP, JPEG, TGA or PNG.
    Cheers
    SteveW

    This has been an ongoing issue for me since I switched from Powerpoint to Keynote. Most of the animated gifs with transparent backgrounds that I used with Powerpoint are no longer transparent in Keynote. You may want to search for those earlier threads on this topic...
    To summarize: I've had to open up my animated gifs in After Effects and use the Color Key effect to restore transparency, with mixed success.
    Good luck!

  • Possible to Use Animated GIF as Rollover Image?

    Before I spend a lot of time on development...does anyone
    know if it's possible to use an animated GIF as a rollover image in
    Captivate? I'm developing an e-Learning course for a
    Sarbannes-Oxley application, and I want to be able to hover over an
    object, then have a rollover graphic describe the hover target in
    more detail...the catch being that I want the description to look
    like a scrolling stock ticker.
    I'm sure Flash is probably the ideal development environment
    for this idea, but that project is way beyond my Flash skills at
    this point...
    Thanks!

    I know you can load and display a PNG image just the way you do for a GIF/JPEG one :
    ImageIcon myIcon = new ImageIcon("my_icon.png");but I don't think many others formats are recognized by j2se... you can simply try to load a BMP file to find out.

  • Animated Gif Repaint

    I knew I was going to end up here eventually, stupid animated gifs.
    First of all, I get weird drawing artifacts on an animated gif on jkd 1.5, I upped this to 1.6 and everything is cool with displaying the gif. It could be because I'm running JBuilder in a XP VM. I don't really care how to fix this, or if its even fixable, I'm just pointing it out.
    I have an animated gif in an imageicon. The program is hangman, and the gif shows a stick figure walking up onto the podium to get hung. I would like to play the gif once, every time the "New Game" button is clicked. I have tried a variety of things to do so, including JLabel1.repaint(); calling the label again, etc, etc. I'll try to post the relevant bits of my code.
    public class HangFrame
        extends JFrame implements ActionListener {
      public HangFrame()
        try {
          jbInit();
        catch (Exception ex) {
          ex.printStackTrace();
      }jbinit calls the placement of all the items.
        jLabel1.setBounds(new Rectangle(19, 57, 550, 400));
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == start) {
          start();
    ....'start' is my name for the button that reads "New Game".
    The start method contains:
    ImageIcon maingif = new ImageIcon( (ClassLoader.getSystemResource(
            "hang1.gif")));
         jLabel1.setIcon(maingif);
    //I've been trying different stuff right here, like repaint.The image displays correctly, and runs once (per the setting I gave it in flash, or thats how java does it).
    I've searched extensively (seems I got lucky by just managing to get it to display once :D). I saw that I might have to flush the image or something like that, but I'm not really sure what that means. I've never had any experience with the graphics and paint component, most of the work we do in class is console and algorithm stuff. I got bored over break and made my hangman into a swing app. I'd appreciate any help.
    Oh, and sorry if this should be in the swing subforum, I figured my issue was too basic for it.
    Edited by: rpk5000 on Dec 31, 2007 8:52 AM

    rpk5000 wrote:
    This is where you're wrong. Dipshits like you post **** like this all the time when it's readily available information that can be searched for WITHOUT >hosing up our forums.Great, give me a link, or even a search term to use on google or these forums. Before you give me search terms, you might want to actually check and make sure the answer is somewhere there...are you out of your freakin mind?!?!?!
    go to google and type "java gif animation"
    you think you're the first person to want to do this?!?!
    moreover, search the forums here
    you think you're the first person to ask for this here?!?!
    You would think "repainting an imageicon animated gif java" would give a page that has the answer on it within the first 10 results but....
    I'm looking for a page that simply says, take your imageicon and call.... (repaint();) or whatever to make it run one more time.Did you even read the API for ImageIcon! It took me 2 seconds to find the information for animating gifs as imageicons.
    Well Java just sucks now doesn't it. Stop using animated gifs and Java since they suck. There, problem solved!I like Java a lot, I'm just saying, in certain instances it seems to fall short.No, YOU fall short. I found the solution in 3 seconds.
    This is a "New to Java" subforum, if you can't handle helping people in a pleasant manner, that shows you respect the other person, what do you think people will think of you and java. If I spent more time on forums like this, and was looking at which language to try, I doubt I would pick java.I don't care what you think of me OR Java. I'm tired of noobs wasting forum resources with this crap. Once I was new to everything, but I went to the library and when the internet came along i learned how to search it!
    Critical thinking people. Don't we teach this in schools any more?!
    When it becomes an Internet joke (http://thedailywtf.com/Articles/plz-email-me-teh-codez.aspx) about how bad the sun forums are, well, you really need to reconsider what you want to do with your life.
    LMAO! You are the daily WTF!
    Edited by: wpafbuser1 on Dec 31, 2007 1:52 PM

  • Help with animated gif please!

    Can you embed an animated gif into emails as a signature? i
    have tried it in entourage and outlook, but the gif seems to stick
    on the first frame. The animation works fine if viewed in a browser
    etc. I have also made the email html format.
    any ideas?

    Open your browser and browse to and select the animated GIF
    image. Do you
    see the animation? If not, then you have not properly
    exported your GIF as
    an animated one. What graphics program are you using?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "PZE" <[email protected]> wrote in message
    news:eiiu8c$pdm$[email protected]..
    > You made an animated GIF in Fireworks, yes? yes
    > It works? Animates as you wish? yes
    > Then you insert it in DW and you see the image, yes?
    no.no.no
    > Static in DW (DW will NOT display the animation) but
    when you preview the
    > page
    > in a browser it
    > doesn't animate as expected? no, unfortunately not, or
    else there would
    > be no
    > problem
    >
    > perhaps I am saving or exporting incorrectly. for the
    animation previews
    > clearly in fireworks, but then I dont get anything in
    dreamweaver, neither
    > static image on work page or animation in preview
    > Please, I would appreciate a little clarity here for
    this site has to be
    > up
    > tonight
    > thanks for any help and explanations
    >

  • Animated gif picture support for iphone 4s or iphoto app

    i love it to use animated gif pictures in the imessage chat, but it is still not possible to view these pictures in the camera roll or in iphoto.
    would bw great if apple would make it work to play gif pictures in original size.
    ether in iphoto or in the iphone camera roll
    editing gif in iphoto would be freakin awesome

    It's not likely that Apple will add gif animation support into iPhoto, not even the desktop application supports it.
    As far as viewing animated gifs saved in your camera roll, there has been a work around to select the gif and share it using the "Email Photo" option. The gif will play while in the email compose box and when you're done viewing it you can simply press cancel to quit the compose email mode.
    Search the app store there are lots of apps that allow you create animated gifs and you may even find some that will let you view them more easily.

  • Animated GIF broken on iPhone, iPad Safari

    [This is a cross-post with the using iPhone forum https://discussions.apple.com/message/17908717#17908717 ]
    I develop a web site and I use animated GIFs. They used to work fine on both iPhone and iPad, but now they're broken. The animation plays but one of the frames plays with the center of the image somewhat transparent so the background color shows through. This is under iOS 5.1. Is this a known bug or limitation and is there a fix?
    Thanks.

    Thanks!  You'll get an email when the bug is ready to verify in a public build (either a developer seed if you have access, or a GM build), but I can't comment on when that might be.  You may add additional comments to the bug at any time by logging back into <https://bugreport.apple.com/>.
    Since this apparently doesn't occur on every animated GIF image, the only suggestion for a workaround that I have is to try a different program (on your Mac or PC) to generate the GIF, or use a different program to post-process the GIF to see if that fixes the issue.

  • Animated GIF broken on iPad, iPhone

    [This is a cross-post with the iPhone forum:  https://discussions.apple.com/message/17908717#17908717 ]
    I develop a web site and I use animated GIFs. They used to work fine on both iPhone and iPad, but now they're broken. The animation plays but one of the frames flashes with the center of the image somewhat transparent so the background color shows through. This is under iOS 5.1. Is this a known bug or limitation and is there a fix?

    Thanks!  You'll get an email when the bug is ready to verify in a public build (either a developer seed if you have access, or a GM build), but I can't comment on when that might be.  You may add additional comments to the bug at any time by logging back into <https://bugreport.apple.com/>.
    Since this apparently doesn't occur on every animated GIF image, the only suggestion for a workaround that I have is to try a different program (on your Mac or PC) to generate the GIF, or use a different program to post-process the GIF to see if that fixes the issue.

  • I am having major issues importing Animated gif's into Adobe Captivate

    Hi everyone
    Captivate 7 (64 bit) keeps crashing when i import animate gifs into flash.
    It's a serious workflow issue for us as the project requires animated gifs.
    I don't have any files to supply for this query as i can't even import gif's into a blank doc.
    Has any one found a solution for this issue ?
    Adobe ??  Have you got a fix for this bug ?
    Thanks in advance
    Nick

    How were the GIF's created? Which version of 7 do you use, you can see the complete version number under Help, About Captivate.
    I have been using animated GIF's in 7, they were created with Photoshop. And I know that each frame in the animation has to have a duration that is not 0secs.

Maybe you are looking for

  • I cannot open PDF files in Photoshop Elements as it is asking for a PDF Password?

    I cannot open PDF files in Photoshop Elements as it is asking for a PDF Password?

  • HP Mini Password Reset Problem

    Hi there. I can't for the life of me remember the password on my netbook. The fatal error code is CNU917289S. Thanks in advance! This question was solved. View Solution.

  • Create Custom Disk Menu in PE7

    I have recently purchased PE7 and so far I like it a lot. One thing though, I have little control over the Disk Menus. What I basically want to do is have a background picture with several text boxes as the buttons instead of the thumbnails. Is there

  • How do i disable my ipod

    i can put my password in anymore because i tryed it to many times and got it wrong

  • Urgent!!Error While replicating Datasources!!

    Hi BW experts! Could any help me how to resolve the the datasource replications error if it exceed length the field name & data length of the field..?? <b>Error:     Fieldlength too long for PSA fields Error     Field QUEST_RATINGFACTOR ( Position 24