Quote:
Originally Posted by nstindia
How to set the speed of Vertical Thumbnail scroll on mouse move
|
Hello, in order to change the scrolling speed you must go to list.as line 57 ( this._y += (ypos-this._y)/3; ) and change the last parameter:
this._y += (ypos-this._y)/2; ->fast
this._y += (ypos-this._y)/15; ->slow
