ie6 and png transparancy (sorry lol) Digital Media UI / UX Design by OnIIcE … 0 no-repeat; }[/CODE] and would like to see the transparancy when its displayed! also, i got a feeling that ther… Re: ie6 and png transparancy (sorry lol) Digital Media UI / UX Design by Troy III [QUOTE=OnIIcE;947578] and would like to see the transparancy when its displayed! [/QUOTE] Well, did you see it? Because the solution i offered is my original solution and I don't like to see it being used without even saying "thanks" in return! Regards. background image slowly change transparancy Programming Web Development by hlamster I have an image I would like to have it's transparancy change from 0 to 100% over about 5 seconds on page load. Any suggestions would be most appreciated. I just can't seem to get the css code right. Do I need to use javascript? Doesn't html5 do this easily? Thanks/Hal What's this guy running? Hardware and Software Linux and Unix by linux … because my main question was about the dock and the transparancy in the Slackware image. problem: I am new in Gui, which should I use Programming Software Development by supanoob … does not count as programm) I want a gui with transparancy and free shaped buttons (like e.g. oval). the windows… Re: Interface Design Programming Software Development by plazmo another cool interface trick, i dunno if those cover them but create a transparancy key and set the frame to no borders. then create an image with the color of the transparancy key around the edges and set it as the forms background that will let you change the shape of the form to however you like Re: Filling rectangles with shades Programming Software Development by asmith3006 So I'd have to work out the RGB values for the colour and the shade of colour? :S Isn't there a nice and simple "transparancy" option? :( Thanks for the help :) Re: Setting transparency color in a groupBox Programming Software Development by ddanbe Why don't you use something like Mygroupbox.BackColor = Color.FromArgb(alpha,Color.Maroon); alpha being the transparancy : 0 = completly transparant , 255 = completly opaque. Have not tested it, hope it helps. Re: Setting transparency color in a groupBox Programming Software Development by Ajantis … Mygroupbox.BackColor = Color.FromArgb(alpha,Color.Maroon); alpha being the transparancy : 0 = completly transparant , 255 = completly opaque. Have not tested it… Re: LIGHT BOX Form Programming Web Development by Graphix … can ofcourse make the div look good) --------> Change the transparancy of the page behind the div ([URL="http://www… Re: LIGHT BOX Form Programming Web Development by Graphix … for a popup div and a backgound which opacity (or transparancy) is lowered. I made a small example for you to… Re: Hex Colour Gradients Programming Software Development by Reverend Jim You can generate a color from numeric values by Color.FromArgb(255, 100, 100, 255) where the parameters are transparancy, r, g, and b. Re: Pixel format and read image pi by pi Programming Software Development by ddanbe Yes, and one more byte to reprsent transparancy. Making it a total of 32 bits. Re: Elementary OS Freya *Released* Hardware and Software Linux and Unix by Slavi … noticed that there wasn't an option to change the transparancy, so I sent them a tweet, not a good design… Re: Transparent panel Programming Software Development by ddanbe You can only set the transparancy of the main window(your form) Could you not show or hide your picturebox and oldest panel when needed? transparancy on a control in C# Programming Software Development by isiebe hi, is it possible to make any control (like button/textfield) transparant, just like the "alpha" method in flash? tnx Re: transparancy on a control in C# Programming Software Development by majestic0110 Yes, if you are using visual studio you can select the control, view properties and under the 'colour' property (I think its called that - don't have VS in front of me) choose Alpha - I believe it is under the 'web' tab. Hope this helps! Re: transparancy on a control in C# Programming Software Development by isiebe [QUOTE=majestic0110;587717]Yes, if you are using visual studio you can select the control, view properties and under the 'colour' property (I think its called that - don't have VS in front of me) choose Alpha - I believe it is under the 'web' tab. Hope this helps![/QUOTE] Tnx, but that's not what I exactly needed, is it possible to make full … Re: transparancy on a control in C# Programming Software Development by majestic0110 Are you more looking for a user control that controls a form's visibility like this : [QUOTE][url]http://www.codeproject.com/KB/cs/transparentwindowsincsharp.aspx[/url][/QUOTE] Re: transparancy on a control in C# Programming Software Development by scru What the original poster needs is WPF (Windows Presentation Foundation) that is built into .NET 3.0. Setting transparency of a control is as simple and easy as Opacity = 0.6 or something similar. Of course, I could understand if you dont want to learn WPF for such a simple problem, except I don't have anything up my sleeve. Transparancy in Background of Existing JavaScript Widget Programming Web Development by Dave-B I have to live with a javascript gizmo on my pages. I've edited it's background color to better suit my html / css, but I'd really like to make the background transparent. I'm revising my html to use far fewer images, and more css, so I have to update the pages anyway. I've tried a number of ideas to replace the javascript color code which just … Re: Transparancy in Background of Existing JavaScript Widget Programming Web Development by ryantroop your best bet is to use F12 on the page after it's rendered, follow the DOM Tree, and find the class or id name of the object you want to affect, then attach your own CSS to make the changes you want. It looks like the params that are passed are expected params by the widget, and adding new params won't make a bit of difference - or may just break … Re: ie6 and png transparancy (sorry lol) Digital Media UI / UX Design by Troy III lol you have to many assumptions. I'd like to know: Since when are you able to resize the backgound images? 'Cause this is all news to me! Last time I used png as a [B]background image[/B] I did it this way: [icode] #pngImage { background: #C01013 url('Image.png') center no-repeat; height: nnn px; width: nnn px; } [/icode] for… Re: ie6 and png transparancy (sorry lol) Digital Media UI / UX Design by w33n IE 6 doesn't support transparent PNG's . You could use a gif if you want transparency. If you use any other file type, you need to make sure the background (the part you want transparent) is the same color/pattern as whatever you're placing it on, this way it will appear transparent. Re: ie6 and png transparancy (sorry lol) Digital Media UI / UX Design by Troy III [QUOTE=w33n;950153]IE 6 doesn't support transparent PNG's . You could use a gif if you want transparency. If you use any other file type, you need to make sure the background (the part you want transparent) is the same color/pattern as whatever you're placing it on, this way it will appear transparent.[/QUOTE] [ICODE]#pngImage { … Re: background image slowly change transparancy Programming Web Development by JorgeM Yes, you can do this with javascript. However, its very easy to do with the jQuery library using the fadeIn() method. Here's a simple example of using the fadeIn() method on a div. For an image, swap the div element for an image. <!doctype html> <html> <head> <title>fadeIn</title> <… Re: background image slowly change transparancy Programming Web Development by hlamster Thanks. But I am having trouble getting it to work. Probably because I am not familiar with jqueary. I want a div element to slowly fade in. I tried to put the function call in the body as an onload. Then I created the function with just the fadein part. Here is the basic idea of my code: <script src="http://code.jquery.com/… Re: background image slowly change transparancy Programming Web Development by JorgeM You dont have to call a function onload for the body element. Try this... <!doctype html> <html> <head> <title>fadeIn</title> <style> #div1 { display: none; width: 250px; height: 250px; background: #ff0000; padding:10px; color: #… Re: What's this guy running? Hardware and Software Linux and Unix by John A [quote=linux;276231]In the above picture, is that the default theme for slackware (with the dock and the transparent windows)? It makes it look like Mac OS X (in a way), and with the way Linux functions, and the way OS X looks, that would make a killer team on my computer[/quote] My guess is that it's Gnome, running [URL="http://netdragon.… Re: What's this guy running? Hardware and Software Linux and Unix by sn4rf3r desktop: Im going with KDE, since the command in the shell is ksnapshot. I think superKaramba is a tool for making widgets for the KDE env and not gnome. sound drivers: joe's right, google or your distro. Since Linux is open source everyone pretty much shares the specific drivers if they dont already come as part of the kernel base. Have you …