• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What's the hex code for transparency?

Comp625

Golden Member
I'm trying to make a set of Flash buttons. The buttons are nice and spiffy but I want the background of my buttons to be transparent (to match the background wallpaper of my webpage). My editor allows me to choose the background from a set of predefined colors or entering my own 6 letter/digit hex code (ex: #FFFFFF). Unfortunately, I have no idea what the hex code for transparency is. Can someone fill me in? Thanks!
 
there is no hex code for transparency.

hex codes define colors. opacity defines the amount of transparancy given to a color and/or object.

you need to change the opacity to something less than 100%. What program are you using?
 
Originally posted by: PrincessGuard
Originally posted by: Skawttey
Originally posted by: yakko
Although I don't know you would think it is 000000.

That is white.

Actually it's black 🙂

LOL

I confirm that transparency doesn't have a hex code. There should be some sort of opacity setting/property to control the alpha filter.
 
Sometimes fuscia represents transparent. That would be FF00FF, assuming the first byte is for red, the second for green and the third for blue.
 
There is a way to make the background transparant. You have to set a extra parameter in the html code of the page where your movies are in. The parameter is "wmode" and it has to be set to the value "transparent".
So it will look something likes this:

<param name=movie value="your_button.swf">
<param name="wmode" value="transparent">

Only works in IE though....
 
Back
Top