What is the best way to get the absolute position of a node in JavaFX?
Imagine we have a node in a Pane (Hbox, Stackpane, or any other pane) and that may have a pare
Assuming the name of the main Stage "window",and the name of the node "menu" you can do this :-)
double X=Main.window.getX()+menu.getLayoutX(); double Y=Main.window.getY()+menu.getLayoutY();