User Guide
NumericStepper component 599
Usage
stepperInstance.previousValue
Description
Property (read-only); the previous sequential value. This property can contain a number of up to
three decimal places.
Example
The following example sets the stepSize property to 1 and the starting value to 4, which would
make the value of
nextValue 3:
myStepper.stepSize = 1;
myStepper.value = 4;
trace(myStepper.previousValue);
See also
NumericStepper.nextValue
NumericStepper.stepSize
Availability
Flash Player 6 (6.0 79.0).
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 of up to three decimal places.
Example
The following example sets the current value property to 2 and the stepSize unit to 2. The
value of
nextValue is 4:
myStepper.value = 2;
myStepper.stepSize = 2;
trace(myStepper.nextValue);
NumericStepper.value
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.