Perfect, thanks!

Jason Merrill
Bank of America 
Learning & Organization Effectiveness - Technology Solutions 
 
 
 
 
 
>>-----Original Message-----
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ
>>Sent: Tuesday, August 22, 2006 8:34 PM
>>To: Flashcoders mailing list
>>Subject: RE: [Flashcoders] Hex colors function?
>>
>>Optimized for her pleasure:
>>
>>hex = ["00", "33", "66", "99", "CC", "FF"];
>>wsp = [];
>>var r, g, b;
>>r = 6;
>>var x = 0;
>>while (--r -(-1)) {
>>      g = 6;
>>      while (--g -(-1)) {
>>              b = 6;
>>              while (--b -(-1)) {
>>                      wsp[x++] = "0x" + hex[r] + hex[g] + hex[b];
>>              }
>>      }
>>}
>>trace(wsp);
>>
>>_______________________________________________
>>[email protected]
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training
>>http://www.figleaf.com
>>http://training.figleaf.com
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to