Creating transparent gifs - but still retaining some opacity

Hello,
I'm having some issues with creating transparent gifs.
I am creating a box with a single color in it w/ the opacity of 30% but when I save it as a gif file, it makes it completely opaque.
I would like to save it as a gif but still making it somewhat transparent.
Is this only possible with PNG files?
Thank you advance...
J

JiggyxJ wrote:
 ...I'm just gonna have to go with PNG but my dev team won't be happy since they have to figure out a way to make the PNG file work with IE6.
Point those dunderheads in this direction. You'll look like a hero:
http://24ways.org/2007/supersleight-transparent-png-in-ie6

Similar Messages

  • Create transparent GIF?

    I recently moved from CS2 to CS4 and here's another basic task I can't do. I could say lots of negative things, instead, just the basics. I have a PSD file with a background layer in one color and a text layer with text in another color. All I want to do is create a GIF which uses the background color for transparency but no matter what I try I only get the background color. This is really discouraging.

    It might be this easy. Keep in mind I'm accustomed to doing this two versions back. I'm incredibly behind on several deadlines and don't have time to do the testing necessary to see if I have it or not. I'm working between multiple sites etc. and am getting inconsistent results atm *but* your idea has worked in some cases. Where it isn't it might be cache-related (although I dumped). Thank you. I'll try to get back with a definitive yes or more details on what's not working. Thank you for answering what seems a really goofy question.
    For earlier posts: 1) yes, I'm using "Save for Web & Devices..." and 2) I was unable to get adding a layer for the background color to work, but, as I mention above, I'm scrambling right now and it's really easy for something which should be obvious whizzing right past me, what with new Photoshop on one hand and on the other my rushing.

  • I am using Timeline to create animated GIFs, but it is going REALLY slow.

    I am trying to create a simple animated GIF using Timeline. My plan is to have it last 20 seconds. But with just a couple of layers with straight-forward movements it moves incredibly slow. What is set to take 0.1 seconds takes 5-10 seconds… Am I setting my time too long? Doing the same thing for 5 seconds worked just fine -- but it was too short a time frame to get done what I wanted.

    Sounds like you are using frame animation instead of timeline animation. for frames you take the total number of frames and divide it by total number of seconds, that should provide the # of seconds per frame.
    Now if you would have gone the timeline route (CS3 and newer) You could have set a key frame for the beginning time of the animation and an ending time of the animation and be done with it, no need to figure out the speed. What it does is the opposite, you set the time and the fps(frames per second) and photoshop creates each frame for you.

  • Upgraded to itunes plus, but still got some DRM tracks

    Hello,
    I upgraded to itunes plus a little while ago and then sufferred a hard drive crash. I've restored my purchased items from my ipod, however they were the pre-upgraded DRM versions. iTunes is saying that all my purchases are DRM free and I can't find another way of removing the DRM.
    Thanks in advance.
    Damion.

    Sorry, but officially Apple does not allow redownloads of purchased items other than iPhone/iPod touch applications. It's your responsibility to make backup copies in case something goes wrong with your system, as unfortunately it apparently did in your case, and you lose all the information on your hard drive. The official statement of their policy can be found here, among other places. If your hard drive was erased and you don't have a backup of the upgraded tracks (which were a completely new download, not just a DRM "unlock"), and don't have them on an iPod, you're probably out of luck and will need to repurchase your tracks or live with the older 128kbps DRM version.
    If you have your tracks backed up, post back and someone here can help you get them restored. Otherwise you can try contacting iTunes Store Customer Service and explaining what happened. Reportedly in some cases Apple has allowed redownloading on a one-time basis. But don't count on it.

  • Anyway to make mouse button 4 and 5 not go back and forward but still retain there functionality with other programs

    This has been brought up a few times but Mozilla refuses to add this functionality or to simply explain to us why they cant. And please do not tell me to just use X-Mouse Controls because there is absolutely no reason why this can't be done or explained to us.
    Don't really care if this counts as spam...this issue has been annoying since Ventrilo and Firefox has co-existed.
    Thank you, Have a nice day!

    You can't do this for Firefox without using X-Mouse Button Control AFAIK.<br />
    Firefox doesn't have support to change those mouse button actions and at least that program appears to work as reported by some.
    *[[/questions/685435]]
    *[[/questions/815957]]

  • I have a working problem, but still need some help

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= secondNum; i++)
      if( i % 2 == 0 ) evensTotal=i;
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }I have everything I need, but I don't want it to display the even numbers squared. I want it to display the odd numbers squared. And also at the end I need to Output all of the uppercase letters. Any ideas of what that means or how to go about it??
    By the way. The program outputs the following when I use firstNum=1 and secondNum=13:
    odd number = 1
    odd number = 3
    odd number = 5
    odd number = 7
    odd number = 9
    odd number = 11
    odd number = 13
    Even numbers total = 42
    2 squared is 4
    4 squared is 16
    6 squared is 36
    8 squared is 64
    10 squared is 100
    Odd numbers(squared) total = 165
    Edited by: mk9000 on Oct 29, 2008 9:09 PM

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= 10; i++)
      if( i % 2 == 0 ) evensTotal+=i;
      else
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }Ok. I figured out how to display the odd numbers squared. I was forgetting to place the else after the if statement. But I still don't understand what my teacher could be talking about when she says "the last step is to output all the uppercase letters"
    Any help here? It makes no sense to me. It's all numbers. How could I output any uppercase letters?
    Edited by: mk9000 on Oct 30, 2008 5:53 AM

  • How did i solve "Cannot create target element" but still having problems.

    Hi Experts,
    I solved my problem of "Cannot create target element" by removing of the data type structure the following fields :
    DT_AS400_1 -> Complex Type
    Payroll      1..1   (Should i put 0..0?)
       ->  Row  0..Unbounded And then Fields to be passed.
    I can't figure how pi can't detect the fields, i use them pretty often.
    Any Suggestions,
    Thanks for your help,
    Regards,
    Steve.

    Hi Steve,
    Check if input message, has the field that is producing the output.
    Therefore, if you don't have any input to fill the structure root, you can fill it with an empty constant.
    Best regards,
    Pedro M. D. Pereira
    Edited by: Pedro Pereira on Jun 10, 2010 1:26 AM

  • Just installed CS6, but still have some need for CS4

    I just installed CS6. I have a plug in (Lucis filters that don't want to load into CS6, and may not be compatible), so I still want to use my CS4.
    If I open images from Bridge CS4, how can I get them to open in Photoshop CS4 instead of CS6?

    If you want an ongoing choice (and you're using Windows) you could put shortcuts to each of the two versions of Photoshop.exe on your desktop and drag images to whichever one you want to use.
    Keep in mind you can only have one of them running at a time.  If Photoshop CS6 is already open and you drag a file to Photoshop CS4's shortcut, it will still open in Photoshop CS6.
    -Noel

  • Getting closer...but still need some advice to fix my router

    This is my third post so disregard this intro if you've read the others. About a year or so ago I bought my WRT45GX with SRX, as well as an adapter with SRX for my PC downstairs. For the first few months it ran fine, with only the occastional strange thing where it would go down and I would usually have to reintall the router to get it to come back up, it did that 1-4 times that day then wouldn't for a long while. More recently I've bought an Xbox Live Wireless Adapter, and a Laptop card with SRX as well.
    My problem recently has been many, randomly without warning or reason my internet connection will pretty much become unuseable, dropping to speeds only rivaled by poor dial up. This can go in spikes or sometimes for hours before it comes back up. Sometimes it just falls out for good and IS unusable, again, for minutes to hours. I have confirmed that it is not my IP as when I hardwire to my computer from my modem it acts as normal as can be.
    I have had my attempts to fix it, in the past few months I've messed with the channel a bit, bought new cables (waste of $40 =( ), been told to do a full router reset by a friends that didn't work, then on these forums I don't even remember the first respounce, but to my second post I was told to add security and change my SSID off of Linksys, which I did.
    Alas, nothing has worked. I do believe I have discovered something that may be of use to you guys though. Recenetly I have discovered the /release and /renew command and first just used it when I get the measage "There is an IP error on your network" once in a blue moon. However, I thought I'd try it when the internet went down, and it popped right back up 0.o Then when I tried it right before posting here it popped right back up as well (from a slow down)
    That could be a temporary fix but doesn't seem to help in the long run, I'm 90% it has something to do with the IPs, hopefully that helps you guys!
    Since everyone always asks, my IP is verison, and I have yet to install the new firmware of my router but if someone thinks it's the problem I will.
    Thanks for your time!! =D

    Well,as you have already tried several settings on the router, you can definitely give a try to upgrade the firmware.
    Try the following settings then,
    Channel -- 1,9 or 11.
    Under "advanced wireless settings"
    Beacon Interval  : 50
    Frag Threshold   : 2306
    RTS  Threshold   : 2307
    You can also update the drivers for the wireless adapter.

  • Can Ipad2 be restored and still keep some apps?

    I just purchased an Ipad2 from a friend.  Is it possible to restore to factory settings but still keep some of his purchased apps?  I assume if I restore and sync to my itunes that i will lose his apps.

    You should not keep his purchase apps under any conditions since you did not purchase them and have no legal right to keep them. Create or use your own iTunes account.
    There are many free apps available for the iPad and many paid apps are very inexpensive. Do the right thing, restore to factory settings and make the iPad your own.
    And yes - when you sync to your own iTunes library you will lose his apps.
    Message was edited by: Demo

  • Transparent GIFs for the web

    Hope someone can help with this.
    I'm basically trying to optimize a transparent image for the
    web. I have a straight PNG vesion here, which is what I'm trying to
    do, but it's around 96k - so a bit high.
    It looks like :
    example
    one
    I tried exporting it as an 8 bit PNG, which got the file size
    down, and looks OK in Safari, but looks hopeless in IE (6) :
    example
    2
    So I tried exporting as a transparent GIF, but it only looks
    like these :
    example
    3
    example
    4
    Any tips on how I can optimize it a bit better for the web,
    and retain it's original appearance?
    Cheers.

    As I have asked several times on the DW forum, how did you
    export the PNG
    image?
    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
    ==================
    "Iain71" <[email protected]> wrote in
    message
    news:fan87d$n8r$[email protected]..
    > Hope someone can help with this.
    >
    > I'm basically trying to optimize a transparent image for
    the web. I have a
    > straight PNG vesion here, which is what I'm trying to
    do, but it's around
    > 96k -
    > so a bit high.
    >
    > It looks like :
    >
    >
    http://www.handprintdvd.co.uk/webdesign/carcarenew/homepagetemp.shtml
    >
    > I tried exporting it as an 8 bit PNG, which got the file
    size down, and
    > looks
    > OK in Safari, but looks hopeless in IE (6) :
    >
    >
    http://www.handprintdvd.co.uk/webdesign/carcarenew/homepage.shtml
    >
    > So I tried exporting as a transparent GIF, but it only
    looks like these :
    >
    >
    http://www.handprintdvd.co.uk/webdesign/carcarenew/homepagetemp3.shtml
    >
    >
    http://www.handprintdvd.co.uk/webdesign/carcarenew/homepagetemp4.shtml
    >
    > Any tips on how I can optimize it a bit better for the
    web, and retain
    > it's
    > original appearance?
    >
    > Cheers.
    >

  • How do I use transparent=true in my Air app but still displaying swf ?

    How do I use transparent=true in my Air app but still displaying swf's files ?
    The thing is that I created a customized chrome, and looks nice when it is transparent cause seems to be floating, it works as a browser, but the problem is that when I navigate with it into a page wich contains embedded youtube videos, as in example, or any other swf file... it just doesn't show...
    Any help ? thanks in advance,

    Contact iTunes Support: http://www.apple.com/support/itunes/contact/

  • IMac 24" iMac  (iMac7,1), Intel Core 2 Duo 2,8 GHz  Ram 4 MB running OS 10.6.8: impossible upgrade to Mac OSX Mavericks. Already created second account, according to apple online support, but still doesn't work. Thanks for help.

    iMac 24" iMac  (iMac7,1), Intel Core 2 Duo 2,8 GHz  Ram 4 MB running OS 10.6.8: impossible upgrade to Mac OSX Mavericks. Already created second account, according to apple online support, but still doesn't work. Thanks for help.

    Your Mac is definitely one of the supported models? http://www.apple.com/uk/osx/specs/
    If so, what happens when you try to download? Is it a case of nothing happens? If so, take a look at the suggestions under 'Stalled Download' in this link:
    http://www.wired.com/gadgetlab/2013/10/mavericks-issues-and-fixes/#slideid-23477 1
    Also, some usrs have found that logging out of the Mac App Store and then back in again and starting over has kick-started the download. It seems that the 5+gb download can take a long time to give any feedback as to what's happening.

  • How do you make the smallest pdf from InDesign CS4 but retain some sharpness?

    I have a 2 page brochure, front and back with layered photoshop files and when I make the small pdf I need to make a 100kb file like a client has done in the past. The smallest I can make the pdf file is 460kb.  It will not go smaller no matter what I do. Of course I can enter final resolution as 72 dpi but the photos become very fuzzy. I have even reduced the file sizes of the photos and replaced them in the document. The file size remains the same.  My client said that Illustrator reduced the size for him smaller in the past but I don't think that is the solution.  How do you retain some sharpness in a pdf but keep the file size at a very minimum?

    But InDesign CS4 outputs the file no matter what at 460 kb for me. 
    Still don't know why they got 100 kb.
    By not using InDesign. Scott is on the right track by mentioning Distiller - which makes PDFs that are smaller than what InDesign can export. Illustrator can be used (improperly*) in the same way. Both methods can strip out stuff that you don't need if you don't care about printing quality, don't care about reliable display across multiple platforms, don't care about precisely how your fonts are embedded, don't care about the lawsuit that the blind people using screenreaders are going to bring against you, and so on. I don't know which of the above is not in your client's 100k file, or which of the things in my above list will be stripped out by using Distiller or Illustrator, but I bet that one of the people who has already posted in your thread does know, and might be talked into telling us.
    But, if you're trying to make your client happy and aren't actually personally invested in making the smallest PDFs known to man, and if you're located in the US, then perhaps the phrases "screenreaders... blind... accessibilty... lawsuit" spoken together might induce your client to rethink this arbitrary desire for miniscule file size of PDFs.
    Alternately, you could just save postscript out of both PDFs and just look at the .ps files in your favorite raw-text viewer.
    * I'm surprised that Adobe Employee Dov Isaacs hasn't come along to tell us what a bad idea this is.

  • Creating a transparent GIF in Photoshop CS4

    I am new to Photoshop CS4 and I'm finding it a bit of a 'challenge'.
    I would like to create a transparent GIF of my signature, so that I can put it into various documents.
    My signature is on a white background and is written using a blue ball point pen and is scanned in as a colored GIF file.
    Despite having Googled how to do that I am completely stumped.  They talk about using the lasso tool to draw around my signature (which I do) and then they say press the delete key.  Well, on my iMac NOTHING happens!
    Can anyone offer me a simple tutorial (for the Mac) that can walk me through creating a transparent GIF file of my signature?
    Thanks,
    Peter

    Load luminance or the channel with the best contrast by command-clicking the appropriate channel in the Channels Panel
    It seems hard to make it more clear …
    Command-click (hold the command-key pressed while clicking) the composite Channel’s icon (or any of the other channels’ if you should deem them preferable) in the Channels Panel.
    This should load a Selection.
    I would like to create a transparent GIF of my signature, so that I can put it into various documents.
    Where do you want to do that anyway (Photoshop, some layout-software, a browser …)?
    Because depending on that using a file-format of fairly limited features like gif could seem inadvisable.
    the problem I have with Photoshop CS4 is that when I enter the help system it goes to the web and give me help for Photoshop CS5!!!!
    You should be able to download the Help as a pdf here:
    http://kb2.adobe.com/cps/408/kb408379.html
    If psd doen’t mean anything to you you should look it up.

Maybe you are looking for

  • Fan Error 0135

    I have a Think Centre M52. All the fans a running continiously and on start up I have a fan error 0135. I have cleaned the two front fans, still no joy , and have now noticed the rear power supply fan is running as well. I will remove and clean the p

  • Hellp needed to resolve  Error

    Hi, While executing a package am getting the below error, on a function call inside a function, I have bolded the error line. Can any help me out to clear this, is that am doing anything wrong, please advice. Error : PLS-00201: identifier 'PRICE' mus

  • I preferred the icons before iOS 7.0.4

    The icons on the iOS 7.0.4 seem like a de-volution. Before they had depth and 3D effect, now they are flat with cartoon colors. Why Apple ? Why did you do that?

  • Tomcat running high utilization on OES11 SP2

    I have Groupwise 2014 with webaccess and calendar publishing host installed on the same OES 11 SP2 in virtual environment. Tomcat is slowly eating up available CPUs until the system becomes unstable. Rcnovell-tomcat6 restart will temporarily clear th

  • Best Ripping software for Apple TV

    What is the best ripping software for Apple TV. I had Handbrake that I've used to rip DVDs to put into iTunes. Right now I don't have ATV but I will be getting it soon. Should this do the trick? or is there a better program that has better results?