A UI component that displays a range of values from a minimum to a maximum.

Available since

1.0.0

.

Variables

@:flash.propertymaximum:Float

The maximum numeric value of the range.

The following example sets the range of acceptable values and updates the current value:

range.minimum = 0.0;
range.maximum = 100.0;
range.value = 50.0;
Available since

1.0.0

.

@:flash.propertyminimum:Float

The minimum numeric value of the range.

The following example sets the range of acceptable values:

range.minimum = 0.0;
range.maximum = 100.0;
Available since

1.0.0

.

@:flash.propertyvalue:Float

The current numeric value of the range.

The following example sets the range of acceptable values:

range.minimum = 0.0;
range.maximum = 100.0;
Available since

1.0.0

.