package test.scenegraph.app; import javafx.application.Application; import javafx.application.Launcher; import javafx.geometry.VPos; import javafx.scene.Scene; import javafx.scene.layout.GridPane; import javafx.scene.layout.GridRowInfo; import javafx.scene.layout.Pane; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.text.Font; import javafx.scene.text.Text; import javafx.stage.Stage; public class ShortAppWithoutDependencies51 extends Application { GridPane pane; Text node = new Text("XO"); @Override public void start(Stage stage) { Pane p = new Pane(); p.setTranslateX(50); p.setTranslateY(50); Scene scene = new Scene(p); stage.setScene(scene); stage.setWidth(500); stage.setHeight(500); node.setTranslateX(50); node.setTranslateY(150); node.setFont(Font.font("Arial", 60)); node.setFill(Color.LIGHTGREEN); node.setStroke(Color.DARKGREEN); node.getStrokeDashArray().add(10.); node.getStrokeDashArray().add(8.); node.setScaleX(0); p.getChildren().add(node); stage.setVisible(true); javafx.application.Platform.runLater(new Runnable() { public void run() { node.setScaleX(1); } }); } public static void main(String args[]) { Launcher.launch(ShortAppWithoutDependencies51.class, args); } }