I've been researching about this for a time now but to no luck I couldn't still do it properly.
Basically I want to make the scrolling of my ScrollPane smooth similar to Mozilla browser's scrolling.
What I did so far is that I applied timeline animation to these events:
myPane.setOnScroll(EventHandler<ScrollEvent>)
myPane.addEventFilter(ScrollEvent.SCROLL, EventHandler<ScrollEvent>)
myPane.vvalueProperty().addListener(ChangeListener<Number>)
but none of these worked.
Any ideas on this?