Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-22 Thread dorkie dork from dorktown
I claim victory as well. Here is one method. This doesn't support mouse wheel acceleration or kinetic scrolling. http://pastebin.com/xssXXY2p JP On Fri, May 21, 2010 at 3:27 PM, Alex Harui aha...@adobe.com wrote: I’m pretty sure at least one person claimed victory by modifying the delta of

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread Baz
Ah I see, thanks for the info. Where would I listen to the capture phase? In the scroller component? On Tue, May 18, 2010 at 1:30 PM, Alex Harui aha...@adobe.com wrote: Scrolling speed is a known issue. Some folks have had luck by modifying the delta property of the MouseEvent before the

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread Alex Harui
That might work. If it doesn’t, try a parent of the scroller. On 5/21/10 10:39 AM, Baz li...@thinkloop.com wrote: Ah I see, thanks for the info. Where would I listen to the capture phase? In the scroller component? On Tue, May 18, 2010 at 1:30 PM, Alex Harui aha...@adobe.com wrote:

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread dorkie dork from dorktown
I'm having this issue too. Is there any solution? On Tue, May 18, 2010 at 3:30 PM, Alex Harui aha...@adobe.com 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

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-21 Thread Alex Harui
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...@gmail.com dorkiedorkfromdorkt...@gmail.com wrote: I'm having this issue too. Is there any solution? On Tue, May 18, 2010 at 3:30 PM, Alex Harui

[flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-18 Thread Baz
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

Re: [flexcoders] how to adjust mouse wheel scrolling for custom itemrender?

2010-05-18 Thread Alex Harui
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...@thinkloop.com wrote: I have a skinnabledatacontainer with