PoseWorks opened this issue on Mar 22, 2005 ยท 11 posts
nruddock posted Fri, 25 March 2005 at 1:50 PM
The colour number are probably the decimal equivalent of the hex value.
-1 = 0xFFFFFFFF (signed long)
Try the following :-
-16777216 = 0xFF000000
16711680 = 0x00FF00000
65280 = 0x0000FF00
255 = 0x000000FF
and see which ones correspond to the primary colours.
Message edited on: 03/25/2005 13:52