I would add an event listener for the mouse wheel event and then change
the delta (You'll have to experiment with the number to get it the way
you like; You may even need to change the += to a -=)...

addEventListener(MouseEvent.MOUSE_WHEEL, onMouseWheelEvent);

private function onMouseWheelEvent(event:MouseEvent):void
{
     event.delta += event.delta < 0 ? -50 : 50;
}


--- In flexcoders@yahoogroups.com, dorkie dork from dorktown
<dorkiedorkfromdorkt...@...> wrote:
>
> does anyone have a fix for a smooth mouse wheel scroll in datagroups
or lists?
>
> right now it's jumping by 40px per scroll. it looks awful.
>

Reply via email to