Published by Administrator on 21 Mar 2008 at 04:50 pm
FlexWheel Component Page
The Flex Wheel component is a list component which allows the user to select an item by “spinning” a wheel using the mouse (drag and drop or single click).
- use one of the prebuilt lists
- create your own list replacing any combobox, listbox etc.
Flexwheel is written in Adobe ActionScript 3.0 and available in flex 2.0.1 and 3.0 versions for download.
View sample here
License
The flex wheel is Freeware. It is free for use in commercial and non commercial sites,
providing you meet the terms in the eula (Basically, watermark must appear).
Sources are not included and a small watermark appears in the bottom left corner of the component.
Documentation included in the form of asDocs and an online tutorial.
YOU MUST Read the whole EULA before downloading and using!
If you wish to remove the watermark and obtain the sources, you may do so with paypal
| single user license | 9.99$ | site license | 49.99$ |
once I receive the payment I will send you the unlocked component + sources to the email provided in the paypal order. It may take 1-4 days, so please be patient. If you do not receive the component please email admin@strawberrypixel.com.
Tutorial
check out the simple tutorial here
Download (Freeware version)
Flex 2.0.1 - flexWheel-v1.0.2
Flex 3 - flexWheel-v1.3.2
(latest release notes)
F.A.Q
Click here to read the Frequently Asked Questions.
This page has the following sub pages.
Chris Velevitch on 03 Apr 2008 at 1:19 am #
Is it an oversight that while the mouse is over the component, the mouse wheel does nothing?
Administrator on 03 Apr 2008 at 4:07 am #
It is. Next version if all goes well.
Maz on 03 Apr 2008 at 9:00 am #
Nice one. Kudos!
{Maz}
Administrator on 04 Apr 2008 at 4:13 pm #
Mouse Wheel now works (since v1.3.2 / v1.0.2) as well as drag and click
However there is still one issue, the mouse wheel event is also handled by the browser - so if you have html that exceeds a single page the page will scroll too.
I could not find an immediate solution for this so the version was released with this known issue. Hopefully I will solve it next version.
Cheers
luchyx on 05 Apr 2008 at 5:30 pm #
Hi Bro. Nice job, now work on ubuntu -beta 8.04, firefox 3, Fplayer 9,0,115,0.
But also scroll page too.
Anil on 07 Apr 2008 at 9:28 pm #
The mouse wheel was the first thing I tried when I was playing the component, and although it did not work right now, I’m confident that a resolution for that bug/feature will present itself soon.
Overall, I really like the look/usability of this component.
My only question is if it is possible to disable the mousewheel event if a developer so chooses?
Administrator on 08 Apr 2008 at 6:26 am #
Yes you can remove the event listener of the Mouse Wheel from each VSmoothSpinBox inside the FlexWheel, there are a few ways to do this, one would be to save reference that returns from addSpinBox(…) and do a
ref.removeEventListener(MouseEvent.MOUSE_WHEEL, ref.onMouseWheel);
I will add a more “clean” way in the next version (property or something).
Thanks for the feedback
Robert on 24 Apr 2008 at 2:37 pm #
Can the flex wheel be set to scroll automatically without using a mouse? I am looking for a way to scroll through list items automatically.
Administrator on 25 Apr 2008 at 8:42 am #
Sorry, It does not have an automatic scrolling mode but you can check out the
containerEx library HSmoothBox and VSmoothBox I have for download on my site here
http://strawberrypixel.com/blog/flex-components/#hsmoothbox
it’s free and open source. Most likely you can set up a timer that calls the scrollToItemIndex
function.
Ryan Gardner on 25 Jun 2008 at 3:15 pm #
Any chance that this component is 508 accessible?
As in.. you can tab to it, and use the arrow keys to navigate it, and a screen reader would read out the values in it?
The only reason I’m asking is because we need our app to be 508 compliant…
Also, when a component has focus, can the mouse scroll wheel scroll the spinner? This is not as much a 508 issue as a “would be cool” issue
Administrator on 25 Jun 2008 at 5:04 pm #
Sorry, not 508 accessible, It’s an interesting idea though.
About the mouse wheel. It already works mostly. See 7 posts back when I wrote about the mouse wheel.