Alerts and Dialogs
Show pop-up messages, warnings, or errors using the Alert class.
java Alert alert = new Alert(AlertType.INFORMATION); alert.setTitle("Info"); alert.show();
JavaFX 0 to Hero
Show pop-up messages, warnings, or errors using the Alert class.
java Alert alert = new Alert(AlertType.INFORMATION); alert.setTitle("Info"); alert.show();