Menu

#1 Color Parsing

open
nobody
None
5
2004-08-09
2004-08-09
Anonymous
No

static public Color[] yellow = {new Color(0,
brightColor, brightColor), new Color(0, dimColor, dimColor)
};

should be
static public Color[] yellow = {new Color(brightColor,
brightColor, 0), new Color(dimColor, dimColor, 0)};

else if (command == 40) {backgroundColor =
black[dim];}

should be:

else if (command == 40) {backgroundColor = Color.
black;}

Or it comes out gray.

Discussion


Log in to post a comment.