Re: [flexcoders] Enable mousewheel function on spark List

2010-01-21 Thread Alex Harui
Like I said, you shouldn’t need to add any code. Try it on Windows. MouseWHeel may not work on Mac. On 1/21/10 6:02 PM, "j2me_soul" wrote: protected function onMouseWheelEventHandler(event:MouseEvent):void{ ? = event.delta; } How should I do to enable the mou

Re:Re:Re: [flexcoders] Enable mousewheel function on spark List

2010-01-21 Thread j2me_soul
protected function onMouseWheelEventHandler(event:MouseEvent):void{ ? = event.delta; } How should I do to enable the mousewheel function to scroll the Spark List ?

Re:Re: [flexcoders] Enable mousewheel function on spark List

2010-01-20 Thread j2me_soul
protected function onMouseWheelEventHandler(event:MouseEvent):void{ ? = event.delta; } 在2010-01-21 13:11:19,"Alex Harui" 写道: MouseWheel should work already, but not on all platforms. I don’t think the player has implemented support for mouseWheel on Mac On 1/19/

Re: [flexcoders] Enable mousewheel function on spark List

2010-01-20 Thread Alex Harui
MouseWheel should work already, but not on all platforms. I don’t think the player has implemented support for mouseWheel on Mac On 1/19/10 11:27 PM, "j2me_soul" wrote: How can I enable the mousewheel event to the s:List ? Is the s:List have a property like verticalScrollPosition in mx:d

[flexcoders] Enable mousewheel function on spark List

2010-01-19 Thread j2me_soul
How can I enable the mousewheel event to the s:List ? Is the s:List have a property like verticalScrollPosition in mx:dataGrid My code is created by flashcatalyst so all component have skinclass property, I don't wanna change the skin to css+picture. So how should I do?