NumericStepper.maximum

Availability

Flash Player 6 (6.0.79.0).

Edition

Flash MX 2004.

Usage

numericStepperInstance.maximum

Description

Property; the maximum range value of the stepper. This property can contain a number of up to three decimal places. The default value is 10.

Example

The following example sets the maximum value of the stepper range to 20.

Drag an instance of the NumericStepper component onto the Stage, and enter the instance name my_nstep in the Property inspector. Add the following code to Frame 1 of the timeline:

/**
 Requires:
  - NumericStepper component on Stage (instance name: my_nstep)
*/
var my_nstep:mx.controls.NumericStepper;

my_nstep.maximum = 20;

See also

NumericStepper.minimum