NumericSliders
|
|
|
|
| FlashStore rating: |
|
| User rating: |
Not rated yet.
|
| Date: |
29-01-07 |
| Submited by: |
jumpeye |
| Skill: |
beginner |
| Price: |
$ 9.99 |
|
|
| |
About |
NumericSliderH and NumericSliderV are two components that allow you to go through a range of numbers limited by the minimum and maximum values you choose. It is a very easy to use component, easy to skin and very useful when you want to step through an ordered set of numbers.
Compatibility
Flash MX 2004 and Flash 8 versions.
NumericSliders can be accessed from Components panel under UI Pro Components – jumpEYE. |
UI Access |
| Components panel under UI Pro Components – jumpEYE. |
Support address |
|
|
Useful links |
|
Download documentation |
|
NumericSliders documentation (61.18 KB)
|
Code samples |
The NumericSliderH and the NumericSliderV are two components that allows you to go through a range of numbers limited by the minimum and maximum limits. It is a very easy to use component, easy to skin and very useful when you want to step through an ordered set of numbers.
If you want to use the component’s value you have to listen the event “change” with this code sample:
var listener:Object=new Object()
listener.change=function(value){
trace("value "+value)
};
instanceName.addListener(listener) |
|
|
|
|
|