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



--- In [email protected], Alex Harui <aha...@...> wrote:
>
> I'm pretty sure at least one person claimed victory by modifying
the delta of the MouseEvent.
>
>
> On 5/21/10 12:56 PM, "dorkiedorkfromdorkt...@..."
dorkiedorkfromdorkt...@... wrote:
>
>
>
>
>
>
> I'm having this issue too. Is there any solution?
>
> On Tue, May 18, 2010 at 3:30 PM, Alex Harui aha...@... wrote:
>
>
>
>
>
> Scrolling speed is a known issue.  Some folks have had luck by
modifying the delta property of the MouseEvent before the scroller sees
it by using a capture phase or high priority event handler.
>
>
>
> On 5/18/10 11:23 AM, "Baz" li...@... <http://li...@... > wrote:
>
>
>
>
>
>
> I have a skinnabledatacontainer with custom itemrender surrounded by a
scroller and I want to adjust how many records are scrolled when the
mouse-wheel is used. Currently it scrolls way to many records. Is there
an easy way to do this? So far, the only way I've found is to extend the
existing scroller, then override the mx_internals "set mouseWheel"
function. The file also has to be AS, because overriding mx_internals
functions doesn't work in mxml <fx:script>. It's a very heavy solution
for a relatively simple activity, am I missing something?
>
> Cheers,
> Baz
>
>
>
>
>
>
> --
> Alex Harui
> Flex SDK Team
> Adobe System, Inc.
> http://blogs.adobe.com/aharui
>

Reply via email to