-2
votes
1answer
25 views

How to color given words upon inserting/removing/updating text [closed]

I'm trying to code a program that is essentially an IDE for BB code (a thread styling language). You know when you're in NetBeans or Eclipse and you enter words like public, private, static, etc and ...
2
votes
2answers
45 views

How to set colour of text from a certain point forward

I'm building a small conversation agent, where the text looks like follows: I would like to set the System's text to always be red. The text is all placed in a JTextPane. How can I accomplish ...
1
vote
2answers
184 views

changing the color of a setText() method using a JTextPane

I have tried alot of different things yet i can't seem to figure out how to do it. I have read about 40 pages on how to set the color of ALL the text in the pane, but not one specific bit. I have some ...
1
vote
2answers
1k views

Java Change Color of Element on JTextPane using StyledDocument

this is kinda overkill for me.. I am using a JTextPane for a chat, I have colors there.. What I want is, with reference to a element changing the color of it.. I am using StyledDocument, I have no ...
1
vote
1answer
353 views

Alternate Text Color in JTextPane

I'm trying to alternate text color in a JTextPane without changing the color of the entire JTextPane. I found a class online that allows you to do this, but when i tried to create a "ColorPane" object ...
2
votes
2answers
4k views

Changing the background color of a paragraph in JTextPane (Java Swing)

Is it possible to change the background color of a paragraph in Java Swing? I tried to set it using the setParagraphAttributes method (code below) but doesn't seem to work. StyledDocument doc = ...