I am trying to set a custom caret in my TextField. I want the caret to always be visible even when focus is on another JavaFX node. If possible I also want to make the caret "Bold" and set the color to blue.
I am using JavaFX 17.0.2 and Java 17.0.2+8
I have tried writing my own textField skin but my version of JavaFX does not have a Caret object, and my TextField does not have a setCaretVisible property. I have also tried using some css such as -fx-caret-color: blue;
but nothing seems to work any help and suggestions are greatly appreciated.
I belive I may have to create my own custom textfield. I am open to any suggestions thank you