Back to course

Alerts and Dialogs

JavaFX 0 to Hero

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();