Vista Sidebar Gadget, Transparent Backgrounds, and Font Color

by Filip Stanek 9. May 2008 12:30

We've had a request from a client to build a Windows Vista Sidebar Gadget.  The background on the gadget is to be somewhat see-through.  So I've played around with gadgets, and noticed that when I make a semi-transparent background on the gadget, the font color gets all messed up.  For example, I wanted white text on a blue background with 50% opacity, and the font appeared blueish, even though it was supposed to be white.  If I turn off the opacity on the background, the font becomes white, but as long as there's opacity, the font is messed up.

Well, after doing some research, it appears there is a way to display the proper font color on transparent backgrounds, although I didn't find this anywhere on the Microsoft site.  The trick is to use JavaScript and the addTextObject() method.  Here's an example of some code, and the resulting gadget:

 

   1: <html> 
   2:   <head> 
   3:     <title>Sample Gadget</title> 
   4:     <style> 
   5:       body { width: 120px; height: 200px; font-size: 12px; margin: 0; font-family: Verdana; color: #FFFFFF; } 
   6:       .gadget { margin: 3px; } 
   7:     </style> 
   8:   </head> 
   9:   <body> 
  10:     <div class="gadget"> 
  11:       <div>This text is not white.</div> 
  12:     </div> 
  13:     <g:background id="background" src="images\bgblue.png" style="width:100%;height:100%;z-index: -1; position: absolute; top: 0; left: 0;" opacity="50"></g:background> 
  14:     <script language="javascript" type="text/javascript">
   1: document.getElementById("background").addTextObject("This text is white.", "Verdana", 12, "white", 3, 50);
</script>
  15:   </body> 
  16: </html>

Tags: ,

Windows Development

Tag cloud

About Filip Stanek

Death Note Pic I'm a developer at ACG Multimedia in Cincinnati, OH. Besides working with ASP.NET, Flash, and other web technologies, I enjoy playing chess, video games, etc.

Currently playing:
- Final Fantasy XIII
E-mail me Send mail

Recent Comments

Comment RSS

Month List

Page List