I have a display text area in my JavaFX app.
It has several methods for appending strings to it.
What I want is for any newly appended text to have some kind of feedback so the user is more visually aware of the new text being displayed.
Ideally what I would like is one of the following, but am very open to other suggestions:
- The appended text is 'typed out' as if someone were typing it into the display text area itself. Or..
- Some kind of highlighting of the new text as it appears.
Although again, I'm open to suggestions!
Thank you.