Reputation: 53
I was playing around with ScrollPane options in order to disable the wheel scroll functionality of the vertical bar. Tried myScrollPane.mouseEnabled = false;
, myScrollPane.mouseWheelEnabled = false;
with no luck. Also, myScrollPane.verticalLineScrollSize = 0;
also did not seem to result in desired effect.
Upvotes: 1
Views: 1596
Reputation: 11198
Okkkk this should be what you're looking for!
myScrollPane.addEventListener(MouseEvent.MOUSE_WHEEL, disableScroll, true);
function disableScroll(e:MouseEvent):void
{
e.stopPropagation();
}
Upvotes: 1