Oops:
c = 0xc0ffee; r = c >> 16 & 0xff; g = c >> 8 & 0xff;b = 0xff;
Should be: c = 0xc0ffee; r = c >> 16 & 0xff; g = c >> 8 & 0xff; b = c & 0xff; Zeh _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

