Results 1 to 3 of 3
Thread: alternating font color
- 12-14-2011, 04:13 PM #1
Senior Member
- Join Date
- Feb 2011
- Posts
- 235
- Rep Power
- 3
alternating font color
i would like to alternate my font color. the code that i have right now changes all of the text. how can i get it so that it will only update one line color at a time, rather than the whole text area font?
Java Code:private void sendTextActionPerformed(java.awt.event.ActionEvent evt) { String temp = input.getText() + "\n"; if (toggleUser.getSelectedItem().equals("User 1")) { update1.setForeground(Color.red); update1.append(temp); } else if (toggleUser.getSelectedItem().equals("User 2")) { update1.setForeground(Color.BLUE); update1.append(temp); } }
- 12-14-2011, 04:38 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,395
- Blog Entries
- 7
- Rep Power
- 17
Re: alternating font color
A JTextArea can't do that (it uses the 'font color' for all the text). Have a look at the JTextArea class or the JEditorPane class.
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 12-14-2011, 04:46 PM #3
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,143
- Rep Power
- 5
Re: alternating font color
See: Text Component Features (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Swing Components). It shows how you can use attributes on a JTextPane.
Similar Threads
-
PdfBox font color
By BobswYourUcle in forum New To JavaReplies: 1Last Post: 07-13-2011, 05:04 AM -
Set Font Color, Font Style & Font Family While Replacing Text
By sherazam in forum Java SoftwareReplies: 0Last Post: 08-18-2010, 10:31 AM -
font color
By newbie123 in forum New To JavaReplies: 2Last Post: 03-01-2010, 03:58 PM -
How to change font/ font color etc in a graphic object using JCombobox?
By JavaInLove in forum AWT / SwingReplies: 5Last Post: 04-25-2009, 08:00 PM -
to set toolItem font color
By vidyakkk in forum SWT / JFaceReplies: 0Last Post: 01-30-2009, 03:06 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks