Search Flex Components Free

Custom Search

December 20, 2007

Flex Control NumericStepper Sample

Flex Control NumericStepper Sample:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml" backgroundAlpha="0" horizontalAlign="left">
<mx:Label text="Default NumericStepper has a minimum=0, maximum=10 and increments by 1" /><mx:NumericStepper />
<mx:Label text="This NumericStepper has a minimum=10, maximum=40, starting value of 20 and increments by 0.01" /><mx:NumericStepper id="ns" minimum="10.00" maximum="40.00" stepSize="0.01" value="20.00" width="65"/>
<mx:Label text="You selected {ns.value}"/>
</mx:Application>

Related Flex Tutorials