Here I show an image of my welcome scene.

The current behavior of the Create New Project button is shown here:
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
stage.hide();
Parent root = FXMLLoader.load(getClass().getResource("/view/scene/configure/NewProjectConfigureScene.fxml"));
Scene scene = new Scene(root);
stage.setTitle("Configure New Project Settings");
stage.setScene(scene);
stage.show();
Explain it with the words: button pressed β I get the scene β hide the current scene β switch the scene to a new scene β re-display the scene. This behavior works.
I am new to GUI programming, so please bear with me explaining what I need.
, , ( , "" ), . .

, , , , , .
:
statusText.setText("Please wait...");
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
try {
Thread.sleep(2000);
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
stage.hide();
Parent root = FXMLLoader.load(getClass().getResource("/view/scene/configure/NewProjectConfigureScene.fxml"));
Scene scene = new Scene(root);
stage.setTitle("Configure New Project Settings");
stage.setScene(scene);
stage.show();
, , . , , , , javafx.concurrent.Task, .
, , ?