4

What I've tried:

scrollPane.setScrollPercentY(100);

and

scrollPane.setScrollY(1);

or

scrollPane.setScrollY(0);

But it only scrolls to the top, not to the bottom.

Zezi Reeds
  • 1,286
  • 1
  • 16
  • 29
  • 1
    Try setting the scroll percent to 0 to go to the bottom, or increment/decrement it every frame to slowly change it. – Zac May 07 '16 at 19:15

2 Answers2

9

For me, this worked instead:

scrollPane.layout();
scrollPane.scrollTo(0, 0, 0, 0);
Betalord
  • 91
  • 1
  • 2
8

Alright, it worked that way:

scrollPane.scrollTo(0, 0, 0, 0);

Hope it helps someone!

Zezi Reeds
  • 1,286
  • 1
  • 16
  • 29