Is there any way of getting the Scene object of an FXML loaded file from the associated class controller.
I'm doing something like this:
@FXML
private AnchorPane anchor;
Scene scene = anchor.getScene();
but i'd like a solution that does not reference the AnchorPane control.