I need some functionality that I cannot find currently in JavaFX. Like the Robot or the Tray Icon.
I know these tools do work with JavaFx applications. But is it ok to use them? Are there any considerations that I should care of?
I need some functionality that I cannot find currently in JavaFX. Like the Robot or the Tray Icon.
I know these tools do work with JavaFx applications. But is it ok to use them? Are there any considerations that I should care of?
Generally it's not advised.
N.B.:
JFXPanel
is aware how to handle that conflicts.you can use Glass robot instead of AWT one (although it's not public API and may be changed in future):
Robot robot = com.sun.glass.ui.Application.GetApplication().createRobot();
robot.mouseMove(10, 30);
robot.mousePress(1);