So there’s a post from 2012 regarding this exact issue.
But here I am in 2015 with the same issue but for the scrollbar on my template repeater.
The final suggestion was:
[code]
#increases scroll bar speed
from javax.swing import SwingUtilities
from javax.swing import JScrollPane
scrollPane = SwingUtilities.getAncestorOfClass(JScrollPane, event.source)
scrollPane.getVerticalScrollBar().setUnitIncrement(10)[/code]
and my implementation:
[code]#increases scroll bar speed
from javax.swing import SwingUtilities
from javax.swing import JScrollPane
scrollPane = SwingUtilities.getAncestorOfClass(JScrollPane, system.gui.getParentWindow(event).getComponentForPath(‘Root Container.action_blocks’))
scrollPane.getVerticalScrollBar().setUnitIncrement(10000)[/code]
Obviously I’m missing something here.