Re: [flexcoders] VBox that scrolls without a scrollbar

2009-05-07 Thread Charles Parcell
Thanks! I found this via Google. Because I am deploying to AIR this seems like the best option for me. http://blog.earthbrowser.com/2009/01/simple-solution-for-mousewheel-events.html Charles P. On Wed, May 6, 2009 at 10:14 PM, Igor Costa igorco...@gmail.com wrote: Charles As Alex said,

Re: [flexcoders] VBox that scrolls without a scrollbar

2009-05-06 Thread Igor Costa
Charles As Alex said, you have to write your own VBox Class to update the scroll position. And other thing to keep in mind is that the default mouse wheel behavior in Mac OS doesn`t work correctly, look at google for a replacement for that. Hope you enjoy! Igor On Tue, May 5, 2009 at 5:00

[flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Charles Parcell
I have a VBox and I want it to scroll using the mouse wheel and some arrow buttons that I will build. The problem is, if I set the verticalScrollPolicy = off then the VBox does not scroll at all. How can I visually turn off the scrollbar and keep the ability to scroll? Thanks, Charles P.

RE: [flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Alex Harui
...@yahoogroups.com] On Behalf Of Charles Parcell Sent: Tuesday, May 05, 2009 1:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] VBox that scrolls without a scrollbar I have a VBox and I want it to scroll using the mouse wheel and some arrow buttons that I will build. The problem

Re: [flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Sam Lai
Or set the scrollbar skin to a null classreference? I think that works, otherwise using a 1x1 pixel transparent skin definitely will. On my phone, so don't have the exact style names with me, but it should be in the docs. On 5/6/09, Charles Parcell pokemonkil...@gmail.com wrote: I have a VBox