Does anyone know how I can adjust the speed of Cladio’s scroll bar so when the arrows are clicked the scroll runs faster? Attached is Claudio’s original file if needed.
The speed variable has no effect on this?
I tried adjusting the interval property of both the (up_btn and down_btn) to a lower number from “18” to “0” Like so…
up_btn.onPress = function() {
myInterval = setInterval(moveDragger, [COLOR=“Red”]0[/COLOR],-1);
};
down_btn.onPress = function() {
myInterval = setInterval(moveDragger, [COLOR=“red”]0[/COLOR], 1);
This seemed to work when previewed in the player but once uploaded for some reason the scroll slowed down again… ?
Maybe something to do with the frame rate? – movie is set up at 30fps.
Also, the content being scrolled is dynamically loaded via XML… Would this have anything to do with the lag?
Any help or direction with this would be great!
Thanks in advance > j