NumericStepper.stepSize

Availability

Flash Player 6.0.79.

Edition

Flash MX 2004.

Usage

stepperInstance.stepSize

Description

Property; the unit amount to change from the current value. The default value is 1. This value cannot be 0. This property can contain a number with up to three decimal places.

Example

The following example sets the current value to 2 and the stepSize unit to 2. The value of nextValue is 4:

myStepper.value = 2;
myStepper.stepSize = 2;
trace(myStepper.nextValue);