It does not get disable by using below statement :
myTxt.textField.mouseWheelEnabled = false;
You also need to stop propagation of that event.
myTxt.addEventListener(MouseEvent.MOUSE_WHEEL, disableMouseHandler, true);
function disableMouseHandler(event:MouseEvent):void {
event.stopPropagation();
}
You need to add both the above codes together to disable mouseWheel.
Click Here to get source files.
2 comments:
looks like this fix will disable all scroll wheel interaction with any parent as well.
Thanks For The Information.
Castors
Post a Comment