Bind NumericStepper value to Label
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <mx:HBox> <mx:NumericStepper id="myStepper" minimum="5" maximum="25" stepSize="5"/> <mx:Label text="You entered: {myStepper.value}"/> </mx:HBox> </mx:Application>