Ключ здесь setOnFinished
. Как сказал @Fabian, используйте его вне цикла, таким образом, он ловит, когда завершается окончательное исчезновение.
fade.setOnFinished((event) -> {
winBox.setVisible(false);
});
Полный код:
import javafx.animation.FadeTransition;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.HBox;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import javafx.stage.Stage;
import javafx.util.Duration;
/**
*
* @author blj0011
*/
public class JavaFXApplication183 extends Application
{
@Override
public void start(Stage primaryStage)
{
HBox winBox = new HBox();
String winMs = "Level 2";
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction((ActionEvent event) -> {
FadeTransition fade = null;
for (int i = 0; i < winMs.toCharArray().length; i++) {
char letter = winMs.charAt(i);
Text winTxt = new Text(String.valueOf(letter)); //Node
winBox.getChildren().add(winTxt);
winTxt.setFont(Font.font(48));
winTxt.setOpacity(0.05);
fade = new FadeTransition(Duration.seconds(1), winTxt);
fade.setToValue(1);
fade.setDelay(Duration.seconds(i * 0.1));
fade.play();
}
fade.setOnFinished(actionEvent -> winBox.setVisible(false));
});
StackPane stackPane = new StackPane();
stackPane.getChildren().add(btn);
VBox root = new VBox(winBox, stackPane);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
launch(args);
}
}