Gifs in windows 8.1

how can you get windows 8.1 to save and run gifs? they work in mt browser (chrome) but when they are saved to windows poicture viewer they are converted to jpg files. when i was running windows 7 the gifs that i saved remained gifs and worked. what should i do?

Hello, thank you for your help. I finally was able to contact someone from Adobe on line.. It took about 1 hour on hold but I finally won the lotto...Lol. Pr.. /Project/Project Settings/General/ I had the (Mercury Playback Engine GPU Accelerated (CUDA) and not the (Mercury Playback Engine Software Only) It only took 1 second for Adobe to figure it out...Lol.
Although I have a high rated Nvidia card that did handle the software for some time after a hack, I believe a Windows update may have altered my Premiere Pro CS6 settings.
Video card is Geforce Nvidia GTX 765M non compatible with (Mercury Playback Engine GPU Accelerated (CUDA). Thank Ronin Edits and cvid01

Similar Messages

  • Opening new applet windows with button

    I'm having a bit of trouble. I have this button when you click it, would open up another window with text in it. That works perfectly. But when I try to add another button for another window, it doesn't go perfectly.
    I took out the useless code to show you the main stuff I'm working with.
    import java.awt.*;
    import java.applet.*;
    public class HorseRacing extends Applet
        CustomFrame gameWindow;
        CustomFrame creditWindow;
        Button openGame, openCredit;
        Image redHorse, yellowHorse, blueHorse, orangeHorse;
        public void init()         
              //Initializes the images
            redHorse = getImage(getCodeBase(), "../classes/horsered.GIF");
            yellowHorse = getImage(getCodeBase(), "../classes/horseyellow.GIF");
            blueHorse = getImage(getCodeBase(), "../classes/horseblue.GIF");
            orangeHorse = getImage(getCodeBase(), "../classes/horseorange.GIF");
              //Instructions window
            gameWindow= new CustomFrame("21 Century Horse Racing - Instructions", redHorse);
              openGame=new Button("View Instructions");
              add(openGame);
              //Credit window
              creditWindow=new CustomFrame2("21 Century Horse Racing - Credits");
              openCredit=new Button("View Credits");
              add(openCredit);
        //  Method Name: action()
        //  Parameters Passed: Event variable evt, Object varible obj
        //  Data Returned: Variable true
        //  Method Purpose: This block responds when the user takes an action
        //                  (such as hitting the return key). It causes the paint
        //                  block to be done again
        public boolean action(Event evt, Object arg)
            Graphics screen=getGraphics();
               boolean visible=gameWindow.isShowing();
            boolean visible2=creditWindow.isShowing();
               if(evt.target instanceof Button)
                 if(visible)
                         gameWindow.hide();
                         openGame.setLabel("View Instructions");
                    else
                         gameWindow.show();
                         openGame.setLabel("Close Instructions");
                    if(visible2)
                         creditWindow.hide();
                         openCredit.setLabel("View Credits");
                    else
                         creditWindow.show();
                         openCredit.setLabel("Close Credits");
            return true;
    //  Name: Sachit Harish
    //  Name of Program: CustomFrame
    //  Date Started: May 15, 2003
    //  Date Finished: 2003
    //  Program Description: This is a racing game where the program will
    //                               generate random odds for the 4 horses. The user
    //                               can then choose their horse and place a bet.
    //                               The user will then see the horses race, and the
    //                               money will be handed out depending on the odds.
    class CustomFrame extends Frame
         CustomFrame(String title,Image redHorse)
              super(title);
              Graphics screen=getGraphics();
              //getClass().getResource("../classes/horsered.GIF").getImage();
              //redHorse=getImage("../classes/horsered.GIF");
              //screen.drawImage(redHorse, 0,0,10,10,this);
         public void init()
              setBackground(Color.gray);
         public void paint(Graphics screen)
              resize(430,280);
              screen.setColor(Color.lightGray);
              screen.fillRect(0,0,500,500);
              screen.setColor(Color.black);
              screen.drawRect(15,40,402,185);
              screen.drawRect(14,39,404,187);
              screen.setColor(Color.gray);
              screen.fillRect(16,41,401,24);
              screen.setColor(Color.black);
              screen.drawString("- - Instructions - -", 160,58);
              screen.drawLine(15,65,417,65);
              screen.drawString("    Once you start clicking on the checkboxes to choose your horse, the", 20,80);
              screen.drawString("odds will be created beside the horses. You can then select the horse",20,95);
              screen.drawString("you want with the checkboxes and in the input box place your bet amount",20,110);
              screen.drawString("Press enter to confirm your bet and click 'Race'.",20,125);
              screen.drawString("    The horses will then race, and once they finish, the winner will be",20,145);
              screen.drawString("displayed. If you didn't choose that horse, you will lose the money you",20,160);
              screen.drawString("bet. If you won, you will be payed out depending on the odds of that",20,175);
              screen.drawString("horse. Your bank will change according to how much money you lost or",20,190);
              screen.drawString("made. Once that is over, new odds will be created and you can play",20,205);
              screen.drawString("again.",20,220);
                 //Image title = getImage(getCodeBase(), "../classes/titlepicture.jpg");
            //screen.drawImage(title, 0,0,430,220,this);         
    //  Name: Sachit Harish
    //  Name of Program: CustomFrame
    //  Date Started: May 15, 2003
    //  Date Finished: 2003
    //  Program Description: This is a racing game where the program will
    //                               generate random odds for the 4 horses. The user
    //                               can then choose their horse and place a bet.
    //                               The user will then see the horses race, and the
    //                               money will be handed out depending on the odds.
    class CustomFrame2 extends Frame
         CustomFrame2(String title)
              super(title);
              Graphics screen=getGraphics();
              //getClass().getResource("../classes/horsered.GIF").getImage();
              //redHorse=getImage("../classes/horsered.GIF");
              //screen.drawImage(redHorse, 0,0,10,10,this);
         public void init()
              setBackground(Color.gray);
         public void paint(Graphics screen)
              resize(430,280);
              screen.setColor(Color.lightGray);
              screen.fillRect(0,0,500,500);
              screen.setColor(Color.black);
              screen.drawRect(15,40,402,185);
              screen.drawRect(14,39,404,187);
              screen.setColor(Color.gray);
              screen.fillRect(16,41,401,24);
              screen.setColor(Color.black);
              screen.drawString("- - Credits - -", 160,58);
              screen.drawLine(15,65,417,65);
              screen.drawString("    CREDITS", 20,80);
                 //Image title = getImage(getCodeBase(), "../classes/titlepicture.jpg");
            //screen.drawImage(title, 0,0,430,220,this);         
    }If I take away everything associated with the creditWindow, it will work. But when I add that in, I get problems.
    Also, I let in those redHorse, yellowHorse, blueHorse, and orangeHorse images because thats another problem I'm having - to get an image to work in one of those new windows.
    -s64

    What happens if you change to a modern action listener?

  • Mac Mini and MuVo V200 problem

    I have Mac Mini .83 a few months now. Yesterday, I've, for the first time, tried to connect my MuVo V200 via USB. The problem is that Mac simply can't see MuVo at all!!! With other devices I have no problem. What I suppose to do?
    Thanks anyone who can help?

    Did you have the Mac before you bought the Muvo V 200? You should have read the box and listed requirements,if you bought this yourself. Below are the minumum requirements for the Muvo V 00 or 200.
    Intel Pentium II 350MHz or AMD K6 -2 450MHz http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/bullet.gif Microsoft Windows 2000/XP http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/bullet.gif 28 MB RAM http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/bullet.gif 70MB free hard disk space http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/bullet.gif CD ROM Drive http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/spacer.gif http://images.americas.creative.com/images/bullet.gif USB .
    luvmyrescuedogs

  • How to handle escape sequnce characters.

    hi,
    when i upload file from html page to a servlet
    I getting problem with escape sequence character ..
    that ie .. wheni upload file from <input type=file name=flieUpload>in servlet
    String path=req.getparameter("fileUpload");
    File f=new File(path);here getting error,
    i think string contains c:\prgms\images\kk.gif
    but windows accept c:/:prgms/images/kk.gif
    so what i have to do?

    No, that's not how you do a file upload.
    When you upload a file from HTML (assuming you have the correct HTML, which you probably don't) it's the contents of the file which is uploaded, not the name of the file.
    You might also get the name of the file, but the server can't open the file using that name, because it's on a different computer. You have to process the contents of the request to get the uploaded data.
    However since you don't have a clue what you are doing yet, you won't be able to do that. And nobody bothers to do it themselves any more because there's the Apache FileUpload package which takes care of all of the ugly details of HTTP.

  • Mail converts all attached images to bmp

    I need to send all my (attached) images as jpg or gif. but windows recipients complain they are receiving them as bmp files. i do have windows friendly setting activated.
    any ideas?

    Are you using RTF for message composition?
    If so, try using Plain Text instead.

  • One Column missing during print functionality

    Hi All,
    Actuall i am using print Functionality in Apex the code is :
    <!--
    <TD align=right><IMG height=3 alt=""
    src="#WORKSPACE_IMAGES#spacer.gif" width=1 border=0><BR><IMG
    height=15 alt="Print this"
    src="#WORKSPACE_IMAGES#drucken.gif" onClick="window.print()" width=25 border=0>
    </TD> -->
    Actually i want to implement print functionality in Report
    Issue 1:
    . When i am openning that report and Clicking the print image its printing but last column is missing means width problem. How to automatically compressed so that all columns should display.
    Issue2: Subject is header column in which we can enter 10 lines or more and so i have put the scroll bar . when i am enetering 10 lines and giving print functionality then top 3 lines get printed bcz remaining are not visisble to printer. So Is any one have ideay how to print all the 10 lines.
    Thanks in Advance,
    Amit

    HI,
    You can try following steps,
    1) Goto transaction SPAD and create Page formate according to your requirement.
    2) Create format and copy action from standard format.
    3) create device type
    4) assign that device type to custamize output type.
    When ever you take print out of that ALV use your custamize Output Type

  • Edit Flash Animation in Fireworks

    I am attempting to publish a Flash (MX 2004) movie as a gif
    or a png, and then open it in Fireworks (MX2004) to edit the
    animation. I can open the gif in Windows Viewer and verify that the
    animation is working. However, when I open it in Fireworks I just
    get a black shape, even when I press preview. When I open the png
    in Fireworks, I just get a transparent canvas. Can anyone
    help?

    Will that export as an animated GIF, Linda?
    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
    ==================
    "Linda R **Adobe Community Expert**"
    <[email protected]> wrote in message
    news:eb53iv$j4$[email protected]..
    > You cannot edit a Flash file in Fireworks. You'll have
    to export it from
    > Flash in GIF format.
    >
    >
    > --
    > Linda Rathgeber [PVII] **Adobe Community
    Expert-Fireworks**
    >
    >
    http://www.projectseven.com
    > Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    > CSS Newsgroup: news://forums.projectseven.com/css/
    > Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm
    >

  • QuickTime Incompatibility with Other Software

    I installed QuickTime on my laptop, but it seems to be incompatible with some other software I use called VisView, which is software used for viewing tiff files. The only thing I use QuickTime for is to listen to iTunes files--I don't want QuickTime interacting with my browser in any way. Is it possible to install QuickTime without installing the browser plug-in/add-on? Disabling the add-on doesn't work, and de-selecting tiff files in the QuickTime preferences doesn't work for tiff files that I try to open directly from web links.

    Lauch the Player. Choose edit>preferences>QuickTime.
    Select the Browser tab. Click on "mime types". In this window simply remove the checks for all types you don't want the browser plugin to handle. Ok, apply.
    Under the file types tab do the same if you have other applications to view or open file types such as movies (mpeg, windows) or pictures (gif, tif, windows, jpeg). Apply, Ok.
    Restart the OpSys to enforce the change.

  • Zen Sleek Photo - Problems with connecting device to the comput

    My zen sleek photo gives me this error message when I try to transfer nusic from Napster "Your portable device has stopped responding. To restart your transfer, please disconnect and reconnect your device. Tracks will begin transferring when the device is connected."?I have tried disconnecting and reconnecting, this does not work. I have also tried the recovery mode using the Clean up and reboot options. I am afraid to try Format and Reload Firmware, since my MP3 player continues to stop responding. I have also tried?installing Creative Zen Sleek PlaysForSure Firmware 2.0.03 and I get this error message "Your player is not connected please connect your player."? Disconnecting and reconnecting does not work here either. I was successful in initially transferring about 50 - 75 songs from Napster. I have also been able to and still can'transfer music from cd's to my MP3 player. It?appears as though Creative Media Explorer, Creative Media Source Player and?Creative Media Source Organizer are all operating OK with my MP3 player. Could my problem be related to MTP?Any Ideals?ThxRoger Conejo

    Can you transfer songs using Media Source, or Media Explorer? Yes, does not work.
    What do you mean by this? Can you transfer songs using these programs yes or no?
    Sorry, no I can't transfer music. You would first have to let WMP scan the folder where the songs are. Once they are in your Library section right click the songs and choose Add to Sync List. Then click on the Sync tab and click on Start Transfer and it should transfer over. After choosing Add to Sync List. Then click on the Sync tab and click on Start Sync I get this error message from WMP "Windows Media Player cannot access the file. The file might be in use, you might not have access to the computer where the file is stored, or your proxy settings might not be correct."?Then I click More Information and get this message from the WMP Error Center?[img]mk:angry:MSITStore:C:\WINDOWS\Help\wmperr0.chm::/wmedia.gif" alt="Windows Media Player banner art[/img] height="65" width="400"><!-- HEADGRAPH_END --><!-- Document last modified on Friday, July 30, 2004 at :27 AM -->]C00DD2: Cannot access the fileWindows Media Player cannot access the file. You might encounter this error message for one of the following reasons:
    This file is currently in use. Close the file, and then try again.<
    You do not have permission to access the server or other location where the file is stored. Verify that you have the appropriate access rights, and then try again.<
    You do not have permission to access the proxy server. Verify that you have the appropriate access rights, and then try again.<
    If you are trying to rip (copy) a track from a CD to your hard disk, you might not have permission to rip to the specified hard disk location. Verify that you have the appropriate access rights, and then try again. If the problem persists, try ripping to another folder.<
    To change the folder where tracks are ripped to
    On the Tools menu, click Options.<
    Click the Rip Music tab.<
    Click the Change button.<
    Select another folder in which to store your digital media files, and then click OK. or-
    Click Make New Folder, enter the name of the new folder, and then click OK.
    <
    Web Help[/u]
    <hr size="">?I've tried all of the above, still not working.

  • Why does animated .gif not work with windows?

    I have created an animated .gif to place in a powerpoint presentation, but when I sent it to my client who used a windows computer, it does not work. When I try to open the .gif in my windows 98 virtual machine, it says it has errors.
    I created it in photoshop CC using the timeline and saving it with "save for web".

    AAAAAAAGGGGGGHHH!  Stupid Powerpoint corrupted the files when it "packaged" them
    Thank you for pointing me in the right direction.
    It is very difficult to figure out what my client is doing on his end.
    It won't let me mark you both as correct.

  • Animated GIF plugin for QT Pro (Windows version)

    I have QuickTime Pro for Windows and I would like to know if there is a plugin to convert/export MOV files into Animated GIF files. I thought that there used to be a feature like this in a previous version of QuickTime Pro.

    QuickTime can be used to open and play .gif files. No plug-in required.
    QuickTime Pro can save them as .mov files and they can be added to other QuickTime formats as independent "tracks".

  • Trying to open local files(gif, html, swf etc) with Firefox only opens a blank window.

    Currently on FF33.0.2
    I used to open gif and swf files(also doesn't work on saved html files) on my local hard drive with Firefox just fine before by just manually double clicking the file and FF would automatically run it just fine.
    Now it only opens up a new window in the startup page.
    Any other browser(Chrome, IE) that I use to open them works.
    Also, I can manually force FF to run the files by dragging or using the [Open] command in the menu bar but then it's much more convenient if it runs them automatically by clicking the files themself.

    Try to redo the default browser setting and temporarily set another browser as the default browser.

  • From Windows 1.0 to Windows 10 in one gif

    Neat.
    I've been running Windows 10 Insider Preview and haven't had any issues, so am looking forward to the release tomorrow.

    http://i.imgur.com/PTGB40j.gif
    This topic first appeared in the Spiceworks Community

  • Gif in Canvas or panel or window (newbie)

    I am looking for help for a long time now...
    I try to draw a gif into a window.
    Adding it to a panel, an new instance of a inner Canva calass or directly to the window results at the best in displaying only a red
    piece not a red Image.
    I start to believe that the component ( panel ) is not big enough ...
    Can someone give me a example of a code ( from A to Z please ).
    PS: I overrid the paint method in the canvas, if that is the solution

    Thanks,
    The application works, thanks again.
    Should it also work in a normal applet ?
    I do not know if I ask for to much but here is my code, I want to insert the image in f.
    import.java.all.stuff.*
    public class Caller extends Applet implements ActionListener
    ClosableFrame f=new ClosableFrame("CallCast");
    ClosableFrame winWork=new ClosableFrame("CallCast Play");
    boolean winWorkActive=false;
    ................. declaring Textareas and Textfields ..................
    Panel p1=new Panel();
    Panel fP1=new Panel();
    Image logo=null ;
    .........Adding Menu bars
    public void init()
    logo=getImage(getCodeBase(),"Logo.gif");
    adding Labels ......
    f.setResizable(false);
    f.setMenuBar(settings);
    f.add(startCall);
    f.setLayout(new FlowLayout(FlowLayout.LEFT));
    f.add(intro);
    f.add........................................................TextAreas;
    ------------------------------->>>>>>> I WANT TO ADD AN IMAGE HERE
    f.setSize(450,600);
    f.setLocation(20,10);
    f.show();
    public void WorkFrames()
    public class ClosableFrame extends Frame implements WindowListener
    public ClosableFrame()
    this.addWindowListener(this);
    public ClosableFrame(String s)
    super(s);
    this.addWindowListener(this);
    public void windowClosing(WindowEvent e)
    ynF.show();
    public void windowOpened(WindowEvent e) {}
    public void windowClosed(WindowEvent e){}
    public void windowIconified(WindowEvent e){}
    public void windowDeiconified(WindowEvent e){}
    public void windowActivated(WindowEvent e)
    name.selectAll();
    public void windowDeactivated(WindowEvent e){}
    public void actionPerformed(ActionEvent e)
    Info da= new Info(new Frame(),"string1", "string2","string3");
    da.show();
    ......................................

  • Edit animated gif

    Hi,
    How can I edit an animated gif in Photoshop Elements 6 for Mac?
    When I open the file there is just the first frame in one layer - no other layers available.
    Thanks!

    Thanks Barbara!
    Barbara B. wrote:
    ... then bring it to PSE.
    I can't drag the single frames from Preview to PSE, because PSE 6 doesn't run in window mode.
    (Is this improved in the current version?)
    I can only drag the single frames to the desktop (as TIFF files, I guess transparency info is lost then?).
    Barbara B. wrote:
    ... there's a bug beginning in PSE 6 where you can't change the frame delay rate from the default when you save an animated gif.
    What's the default frame delay rate? Maybe it's just what I need.
    Barbara B. wrote:
    You might  want to look into a free program like giffun from stone.com instead.
    Yes that's maybe a better idea. It doesn't have to be free software. Can you recommend something good?
    Thanks again!

Maybe you are looking for

  • Recovering playlists after new hard drive installed in computer

    The computer repair store explained that all of my itune music was exported to my external hard drive before they installed an upgraded hard drive into my old computer. I was able to retrieve my songs from my external drive and put them into my "new"

  • Synch RFC error

    Hello, in one of our BPMs we have to use a synchronous RFC to avoid that a server error is thrown due to a timeout. The RFC triggers an IDOC to be created (we use correlations) but under some conditions there might be no IDOC created and our BPM thro

  • Symbol versus Symbol Std

    Since FM8, I use Unicode fonts since it's the only sensible way for multilingual documents. Also, I use Adobe Pi Std for special graphical symbols instead of Wingdings or type 1 Dingbats etc, since it is Unicode and installed with FM8, which makes it

  • The audio on my iPhone 4s cut out randomly; I have to unplug and replug headphones to get it back. How can I fix this?

    For the last year I have been unable to use my iPhone speakers because of some bug. I can play music and audio through headphones, but that's it. And just today even the headphones became spotty. I'll play a song (through iTunes) for a while, then th

  • PL/SQL using dynamic table names

    I want to create a procedure in which i want to pass a parameter which after concatenation with a string gives me a variable which is the tablename in my SELECT query in the procedure. How to do it?