I mean that when using a stage with stageStyle.UTILITY, I don\'t want to show the \"solid white background \" but a transparent background.
I need a stage doesn\'t s
final Stage stage = new Stage(StageStyle.TRANSPARENT); Group rootGroup = new Group(); Scene scene = new Scene(rootGroup, 339, 319, Color.TRANSPARENT); stage.setScene(scene); stage.centerOnScreen(); stage.show();