Hello! Here is the code
ScrollPane sp = new ScrollPane(); sp.setOnMousePressed(event -> { System.out.println("pressed"); }); sp.setOnMouseDragged(event -> { System.out.println("dragged"); }); But for some reason it does not work, nothing happens when you click on the ScrollPane. What's wrong?