How to color for the entire text field,i.e., if i type my text i should get in different color say red, blue or green.
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
posted
0
you can say myText.setForeground(magenta); myText.setForeground(new Color(120, 150, 244)); TextField inherit setForeground from Component and setBackground from TextComponent. Class Color defines a bunch of ready made colors for you to use. Or you can feed in the numbers relating the the mix of red green and blue that you want (like the custom color setters in paint applications). There are other contructors available if you read the API.
"JavaRanch, where the deer and the Certified play" - David O'Meara
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.