On Sat, 13 Dec 2008 17:11:33 -0000, "Sheri" <[email protected]> wrote:
>Do you know how to compute the r g b values?
local r,g,b,rgb
rgb = inputcolor
r = rgb % 256
g = rgb / 256 % 256
b = rgb / 65536 % 256
win.debug("rgb = ",rgb," r g b = ",r,g,b)
quit
--
Carroll Robbins
