While
While

Reputation: 53

How to disable mouse wheel scroll of ScrollPane in As3?

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

Answers (1)

Ronnie
Ronnie

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

Related Questions