JavaFX Spell checker using RichTextFX how to create right click suggestions

I found out how. By using the caret position, I can select a word and replace it. The problem is, right clicking didn’t move the caret. So in order to move the caret, you add a listener. textArea.setOnMouseClicked((MouseEvent mouseEvent) -> { if (mouseEvent.getButton().equals(MouseButton.SECONDARY)) { if (mouseEvent.getClickCount() == 1) { CharacterHit hit = textArea.hit(mouseEvent.getX(), mouseEvent.getY()); int … Read more