I want to use that method :
http://java.sun.com/j2se/1.3/docs/ap...lor.html#Color(int, int, int)
but I do not see how ?
Printable View
I want to use that method :
http://java.sun.com/j2se/1.3/docs/ap...lor.html#Color(int, int, int)
but I do not see how ?
Eh...
Code:import java.awt.Color;
Color c = new Color(255, 255, 255);
SomeClass.DoStuff(SomeArgument, c);
ah yes... thx you