well, now i was wondering if it is possible to change the color and font of a certain string.
like,
String str = "Test";
str.setColor(Color.RED);
str.setFont(new Font(str.getFont().getName(), Font.BOLD, 12);
because, when i looked up colors, you have to use the Graphics interface, and drawString("test) and such...
so the question is really, how can i add colors, to strings typed in a JTextArea. (deffirent colors, for deffirent strings, so not just JTextArea.setColor();)