If you're not on a Mac, this is how you do it.

stage.addEventListener(MouseEvent.MOUSE_WHEEL, onMouseWheel);
private function onMouseWheel(e:MouseEvent = null):void {
//e.delta is the amount the mousewheel has scrolled, +1, -3, etc. With
this you can change the camera zoom or whatever you'd like.
}

Reply via email to