ICO and GIF files

Why does Headstart need qmsaccep.ico as well as qmsaccep.gif to build the toolbar.
Thanks in advance
Auke Quist

Auke,
The ico files are used in client/server mode, the gif files are only used on the web.
Kind regards,
Peter.
null

Similar Messages

  • Color issues w/ .png and .gif files in CS5.5 Live view

    Hi All,
    I am having a bunch of trouble with my .png and .gif image files in Dreamweaver CS5.5. In Dreamweaver's design view everything looks fine but when I preview my pages in Live View or in a browser the colors in my .png and .gif files are way off. All my images are designed in RGB.
    Any info anyone has to offer will be greatly appreciated. Thanks!

    GIFS contain a maximum of 216 colors (web safe palette)
    PNG and JPG can contain 16 million colors (true color palette),
    When you say the colors are  "way off"  we don't know what you mean.
    Can you post a link to your web page?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Jpg and gif files not showing up on recipient's email

    When I attach photos on an email sent from whichever email address through my Mail Application (the one that comes with all Mac OS), sometimes people using AOL or other mail servers don't even see the files. Usually, I think all the problems are with jpg, pdf, and gif files and not .doc files or any text files. they seem to see the text files without any problems. So then Im forced to go to my gmail through safari and attach one by one. Honestly, I find the click and drag en masse of the files I want as attachments much easier, but I want to know how and what is the reason that some servers continuously cannot see my files. Sometimes they see the files as I attach them, meaning as photos on the actual email. And they get confused and don't know how to download them because they say that on the email application they use (gmail for example) there is nowhere where it says download attachments. What is going on and what can I do on my mail application to change this. its really frustrating because my work makes me email lots of photos and sometimes this problem is extremely cumbersome and annoying

    Some email readers have trouble with enclosures (particularly graphics) from within an email that is formatted as Rich Text. If you format your mail as Plain Text (see the Format menu) then I expect they will see the enclosures.

  • Elements and gif files

    I in stalled PS Elementsd 2.0 on Windows 7 2013 and gif. files stopped working. What can be done?

    As far as i know, windows 7 won't play animated gifs in the stock windows photo viewer like windows xp would.
    Did you install some kind of add on to make windows photo viewer play animated gifs?
    Are you sure windows photo viewer was the program opening and playing the animated gifs?
    XnView is a nice program that will play animated gifs and do a whole lot more.
    http://www.xnview.com/en/

  • Can't save TGA and GIF files with layers

    Hi,
    I'm using Photoshop CS5 for Mac, and when I try to save files as TGA or GIF, the Layers option is not available and the result is a flattened, single layer.
    • Files I am working with are 8bit RGB.
    • Photoshop is set to 32bit, not 64bit.
    • There are no extra channels other than RGB.
    • Switching files to indexed color doesn't help because it asks to merge all layers.
    • I can open Gif files containing layers, but I can't then Save or Save As with layers.
    All help appreciated, and thanks in advance.
    Below is the save dialog box as it appears when i try to save a Gif or TGA.

    GIF does not support layers.
    Animated GIF files may open as layers into Photoshop. You need to save them again as an animated GIF file after manipulating them in the animation panel. The 'Save for Web' function would be most ideal.

  • Jar file and gif file

    why jar file cant load the .gif file? is it need to specify the directory for the .gif file in jar? when i run my applet, that can't load the picture, what is the problem? below is my code:
    public static final ImageIcon ICON_FOLDER =new ImageIcon("folder.gif");
    for (int i=0; i<v.size(); i++) {
                   FileNode nd = (FileNode)v.elementAt(i);
                   IconData idata = new IconData(DirTree.ICON_FOLDER,
                        DirTree.ICON_EXPANDEDFOLDER, nd);
                   DefaultMutableTreeNode node = new
                        DefaultMutableTreeNode(idata);
                   parent.add(node);
                   if (nd.hasSubDirs())
                        node.add(new DefaultMutableTreeNode(
                             new Boolean(true) ));
              }

    if the image is in your jar file,maybe you can use:
    public static final ImageIcon ICON_FOLDER =new ImageIcon(this.class.getResource("folder.gif"));
    variable "this" stands for your class which extends Applet or JApplet
    ...I'm not sure

  • Quicktime and gif files

    I use gif images in my imovie projects. With my older version of quicktime pro, I was able to open a GIF, make it longer, and then drop it into my movie with picture in picture (imovie 6).]
    I recently bought a new MAC, and the with new version of quicktime, the gif images are gray, I can not open them.
    Any suggestions?
    Thanks

    I use gif images in my imovie projects. With my older version of quicktime pro, I was able to open a GIF, make it longer, and then drop it into my movie with picture in picture (imovie 6).
    Somewhat confused by your statement here. Were you using QT Pro or iMovie 6 to create your content?
    I recently bought a new MAC, and the with new version of quicktime, the gif images are gray, I can not open them.
    You should still be able to create picture-in-picture content with QT 7 Pro on a new Mac. In fact, if you set "in" and "out" points for the duration you want the GIF to play, your can use the "Add to selection and Scale" Edit menu option to combine the lengthening and pasting process into a single action. (I.e., open the GIF in one player and then using Command-A/Command-C to copy the "entire GIF image movie" to temporary memory before adding it to the second movie player.)

  • How to find out image size (in pixels) of jpg and gif files

    this seems to work, though i doubt that it would very time:
                   Image img = Toolkit.getDefaultToolkit().getImage("car.jpg");
                   int w = img.getWidth(null);
                   int h = img.getHeight(null);
                   while(w <= 0 || h <= 0)
                      try{Thread.sleep(10);}catch(InterruptedException ix){}
                      w = img.getWidth(null);
                      h = img.getHeight(null);
                   JOptionPane.showMessageDialog
                      null,
                      filenames[i] + ": " + w + "x" + h,
                      "ImgSize",
                      JOptionPane.INFORMATION_MESSAGE
                   );please suggest a better solution.
    thanks

    >
    We've a requirement that we need to find out the size of a java object at run time, is there a direct java API to get the size of a composite object in memory?
    Here is my requirement: We are adding string objects (which is an xml string of considerable size) into a List. After reaching certain size limit (lets say 5MB) of the list i need to put this data into DB as a CLOB. So every time I add a string object to the list, I need to see if the total size of the list exceeds the limit and if yes, flush the results into DB.
    I am not sure if java has a direct API for this, if not what is the beast way to do it, it s critical requirement for us.
    It would be really great if someone could help us out.
    >
    Could you explain your actual requirement a little more fully.
    1. Is each individual string a separate XML string? Or is it just a fragment? Why would you just concatenate them together into a CLOB? That won't produce valid XML and it won't let you easily separate the pieces again later. So provide a simple example showing some strings and how you need to manipulate them.
    2. Are you using these xml strings in Java at all? Or are you just loading them into the database?
    For example if you are just loading them into the database you don't need to create a list. Just create a CLOB in Java and append each string to the CLOB. Before you append each one you can check to see if the new string will put you over your length limit. If it will then you write the CLOB to the database, empty the CLOB and start appending again to the new clob instance.
    If you explain what you are really trying to do we might be able to suggest some better ways to do it.

  • Bridge: why can't I add any metadata to gif and pct files???

    Not sure what the issue is here with Adobe Bridge and gif and pct files, but Bridge won't let me add any metadata or keywords.
    With keywords, Bridge displays a window saying that pct and gif files can't add xmp metadata.
    Is there something I'm missing in my settings? Or should I just go ahead and convert all my gif and pct files to jpegs, tiffs or psd.

    Not sure what the issue is here with Adobe Bridge and gif and pct files, but Bridge won't let me add any metadata or keywords.
    With keywords, Bridge displays a window saying that pct and gif files can't add xmp metadata.
    Is there something I'm missing in my settings? Or should I just go ahead and convert all my gif and pct files to jpegs, tiffs or psd.

  • Idle url GIF file Image and XML file required.* for 7970

    Can anyone supply me a working xml and gif file for the Cisco 7970 colour phone?
    Has anyone actually got this working?
    Thanks!

    First, get the terms right.
    Idle screen is idle screen. Does not need to have anything to do with CCMCIP directory.
    You can set the phone "Device" to ANY server which is running a HTTP server and is able to send headers. Apache. IIS. You name it.
    What you have to do is to
    - make a PNG file accessible using HTTP. Say, it will be http://someniceserver/ipphonestuff/neatpic.png
    - create an XML file with the description I already provided and change the URL to http://someniceserver/ipphonestuff/neatpic.png
    Voila.

  • Iconic buttons in design time ... Is there any way to take their icons from the jar or at least from gif files?

    I've put my button icons in a signed gif, and they work fine at runtime.
    The problem is at design time, I can't get to see their icons properly.
    I have to convert the gifs to ico and place them in a folder referenced by the old UI_ICON registry variable.
    Also, as the gifs are 16x16, they are cropped in design time, because I see them as if they where stretched to 32x32 size.
    At least it would be enough if I could place the gifs directly somewhere, without converting to ico.
    It seems as if oracle had not put any development work in the builder, which is like a direct port from the 6i c/s version.

    Since you didn't mention exactly which Forms version you are using, I will guess and assume it is one of the many versions after 6.0.8.  The Forms Builder 9.x+ supports ico, jpg, and gif files.  It will not however read them from a jar.  Therefore, you will need to extract them into a directory as defined by UI_ICON.  Also, the files will need to be of the same type (gif, jpg, ico).  Mixing formats is not recommended or supported.  The format you choose can be defined in UI_ICON_EXTENSION
    So for example in your Registry you might have something like this:
    UI_ICON = C:\myImagesDirectory
    UI_ICON_EXTENSION = gif
    Since "gif" is the default, you do not need to set this if using "gif" files.

  • Cannot generate GIF file into PDF file

    Use Acrobat 8 professional to create a PDF file from html. However the GIF image is not generated in the PDF file. JPG file is OK. All the html, jpg and gif files are in the same directory. The GIF image can be viewed if the html file is opened by IE.
    Here is my html file:

    All the HTML and GIF files are under the same local directory. If I use IE to view the HTML file, the GIF images are loaded and displayed. The page can be printed into a PDF file with Adobe PDF writer (I thought it should be Acrobat Distiller 8). All the images (GIF and JPG) are printed too.
    However, when I use "Convert current web page to an Adobe PDF file" in the IE tool bar or "Create a PDF" in the Acrobat tool bar, the GIF images are not built into the PDF. The JPG images in the same directory are built. It is strange.

  • GIF files not loading from jar in Netscape

    Hi,
    I have a jar file that contains my applet code(class files) and a bunch of gif files. I load the image using the URL returned from getCodeBase() method. The images load fine in Explorer but they do not show up in Netscape. The class files and gif files are not in separate directories and getCodeBase is returning the correct URL of my server(Example: http://www.myserver.com). Does anyone know how to fix this? I also noticed that download time did not improve on either browser when I bundled all the gif file in the jar rather than place them outside the jar file. Isn't bundling them in the jar supposed to save multiple requests back to the server to get the gifs and thus reduce download time? Thanks in advance.

    There the sample from Netscape: http://developer.netscape.com/docs/technote/java/getresource/getresource.html#classloader

  • The correct way to init an ImageIcon from gif file ?

    What is the correct ( portable, portable, always works etc... ) way to do this :
    ImageIcon icon = new ImageIcon("some_picture.gif"); ?
    use MyClass.class.getResource("some_picture.gif") ?
    Use absolute path ? Relative ? Relative to what ?
    Urgent help needed !
    Our project has a complex structure, something like :
    com.x.y.z.ClassA
    picture in :
    com/x/y/stuff/pics/some_picture.gif
    so we use in ClassA :
    getClass().getResource("../stuff/pics/some_picture.gif");
    But that only works with plain files, it fails when run from a jar !
    ( all the class and gif files are inside the jar )
    We need it to work when executed from files and from jar !
    Also on multiple platforms !
    Help!
    stein

    I use:
    private final static ImageIcon myIcon = new ImageIcon(MyClass.class.getResource("myIcon.gif"));
    and later on use that icon in a JTree and it works. And I have it in a jarfile as well. Relative means that it's relative to where you have your classfiles. Absolute means the complete path (C:\Temp\MyIcon.gif).
    You could use absolute path if you're not sure where your classfiles are..
    Good luck

  • Jpeg and gif images are not fuzzy

    How can I import jpeg and gif files so that they are crisp and not fuzzy?  I have Lifecycle Designer 7.0
    T

    Look at the bottom of this page as well [http://carlback.blogspot.com/2007/12/apex-and-3rd-party-js-libraries.html]
    Patrick Wolf
    Carl,
    the only drawback with #WORKSPACE_IMAGES# and #APP_IMAGES# is that it doesn't get cached by the browser. So each page request will transmit the hole file again. A caching option for the "Static Files" in the Shared Components would be nice :-)
    About lazy loading with the #WORKSPACE_IMAGES#. I could think about a mod_rewrite rule which translates the additional file request of the JS library into a valid request for APEX.
    Carl Backstrom
    In 3.1 we emit a last modified header now for uploaded files so that should help with browser caching.
    I wonder if anything's changed since then.
    Kofi

Maybe you are looking for

  • Can't replace color in PSE 9

    I am trying to replace one color with another in a photo in PSE 9. Following the instructions in the on-line help does not work. Here is what I do. 1) Select the eye dropper and click in the image to set the foreground color to the replacement color.

  • "Add Entry" for the future

    Is there some way to add entries that will posted in say 2 days from now or thats not possible?

  • Payment limits on Vendor

    Is there a way to set a payment limit by vendor. For example, we do not want to pay a selected vendor more than $10,000. Want limit on either invoice entry on on payment run.

  • "Run-time Error "5": Invalid Procedure Call or Argument" when starting application

    I tried installing an old custom accounting application on Windows 7 and it won't run. I then tried using the "simpleprogramdebugger" and here are the last few lines when the error was encountered: Event Time Event Type Thread ID Memory Address Filen

  • Problem Using toString method from a different class

    Hi, I can not get the toString method to work from another class. // First Class Separate file MyClass1.java public class MyClass1 {      private long num1;      private double num2;    public MyClass1 (long num1, double num2) throws OneException, An