I saw a method in AWT: java.awt.Window.getWindows(). In JavaFx, is there any method to get all window JavaFx application?
java.awt.Window.getWindows()
Thanks,
for javafx8 running java8 use
FXRobotHelper.getStages() or StageHelper.getStages()
This will retrieve all Stages which is essentially a Window itself ( it extends Window class)