My account
Shopping cart
Knowledge base
Support


Usage and Code Samples for NumericSliderH and NumericSliderV Flash Components



NumericSliderH and NumericSliderV Usage and Code Samples

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);