Forum Moderators: open

Message Too Old, No Replies

Know Number of colors

         

orion_rus

11:51 am on Dec 6, 2004 (gmt 0)

10+ Year Member



Hello world again.
I find some problems with opacity if user have less than 24 bit color. Opacity items seems very bad on it.
May be somebody solve this problem or know function what returns number of colors?
Thanks in advance

Bernard Marx

12:23 pm on Dec 6, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Search under the terms "screen.pixelDepth" (netscape) and "screen.colorDepth" (IE).

Perhaps you could just do an either/or:

var depth = screen.colorDepth¦¦screen.pixelDepth
if(depth) alert(depth)

orion_rus

2:53 pm on Dec 6, 2004 (gmt 0)

10+ Year Member



Thanks Marx
You already help me alot)