/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package test; import javafx.animation.KeyFrame; import javafx.animation.KeyValue; import javafx.animation.Timeline; import javafx.application.Application; import javafx.beans.binding.Bindings; import javafx.beans.property.IntegerProperty; import javafx.beans.property.SimpleIntegerProperty; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Cursor; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.ScrollPane; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; import javafx.util.Duration; /** * * @author Kyle */ public class Test extends Application { private IntegerProperty transX = new SimpleIntegerProperty(0); private Timeline headTrans; /** * @param args the command line arguments */ public static void main(String[] args) { Application.launch(Test.class, args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("Hello World"); Group root = new Group(); Scene scene = new Scene(root, 500, 400, Color.LIGHTGREEN); primaryStage.setScene(scene); primaryStage.setVisible(true); Group g = new Group(); ScrollPane scp = new ScrollPane(); scp.setHbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS); scp.setPrefViewportWidth(305); scp.setPrefViewportHeight(155); root.getChildren().add(scp); scp.setContent(g); final Loop lp = new Loop(300, 100); g.getChildren().add(lp); Group g2 = new Group(); ScrollPane scp2 = new ScrollPane(); scp2.setHbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS); scp2.setLayoutY(200); scp2.setPrefViewportWidth(305); scp2.setPrefViewportHeight(155); root.getChildren().add(scp2); scp2.setContent(g2); final Loop lp2 = new Loop(400, 100); g2.getChildren().add(lp2); Button btnStart = new Button(); btnStart.setLayoutX(400); btnStart.setText("Start Scrolling"); btnStart.setOnAction(new EventHandler() { public void handle(ActionEvent event) { lp.startScrolling(); lp2.startScrolling(); } }); root.getChildren().add(btnStart); } }