/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package testpause; import testrender.*; import com.sun.javafx.tk.Toolkit; import java.util.Iterator; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.paint.Color; import javafx.stage.Stage; import javafx.stage.Window; /** * * @author jbachorik */ public class TestPause extends Application { /** * @param args the command line arguments */ public static void main(String[] args) { Application.launch(TestPause.class, args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("Pause/Resume Tester"); Group root = new Group(); Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN); Button btn = new Button(); btn.setLayoutX(100); btn.setLayoutY(80); btn.setText("Pause/Resume"); btn.setOnAction(new EventHandler() { public void handle(ActionEvent event) { Toolkit.getToolkit().pauseScenes(); Toolkit.getToolkit().resumeScenes(); } }); root.getChildren().add(btn); primaryStage.setScene(scene); primaryStage.show(); } }