| Package | mx.events |
| Class | public class SliderEvent |
| Inheritance | SliderEvent flash.events.Event |
change, thumbDrag,
thumbPress, and thumbRelease events
of the HSlider and VSlider classes.
See also
| Property | Defined by | ||
|---|---|---|---|
| clickTarget : String
Specifies whether the slider track or a slider thumb was pressed.
| SliderEvent | ||
| keyCode : int
If the event was triggered by a key press, the keycode for the key.
| SliderEvent | ||
| thumbIndex : int
The zero-based index of the thumb whose position has changed.
| SliderEvent | ||
| triggerEvent : Event
Indicates the type of input action.
| SliderEvent | ||
| value : Number
The new value of the slider.
| SliderEvent | ||
| Method | Defined by | ||
|---|---|---|---|
|
SliderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, thumbIndex:int = -1, value:Number, triggerEvent:Event = null, clickTarget:String = null, keyCode:int = -1)
Constructor.
| SliderEvent | ||
| Constant | Defined by | ||
|---|---|---|---|
| CHANGE : String = "change" [static]
The
SliderEvent.CHANGE constant defines the value of the
type property of the event object for a change event. | SliderEvent | ||
| THUMB_DRAG : String = "thumbDrag" [static]
The
SliderEvent.THUMB_DRAG constant defines the value of the
type property of the event object for a thumbDrag event. | SliderEvent | ||
| THUMB_PRESS : String = "thumbPress" [static]
The
SliderEvent.THUMB_PRESS constant defines the value of the
type property of the event object for a thumbPress event. | SliderEvent | ||
| THUMB_RELEASE : String = "thumbRelease" [static]
The
SliderEvent.THUMB_RELEASE constant defines the value of the
type property of the event object for a thumbRelease event. | SliderEvent | ||
| clickTarget | property |
public var clickTarget:String
Specifies whether the slider track or a slider thumb was pressed.
This property can have one of two values:
SliderEventClickTarget.THUMB
or SliderEventClickTarget.TRACK.
See also
| keyCode | property |
public var keyCode:intIf the event was triggered by a key press, the keycode for the key.
| thumbIndex | property |
public var thumbIndex:intThe zero-based index of the thumb whose position has changed. If there is only a single thumb, the value is 0. If there are two thumbs, the value is 0 or 1.
| triggerEvent | property |
public var triggerEvent:Event
Indicates the type of input action.
The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD.
| value | property |
public var value:NumberThe new value of the slider.
| SliderEvent | () | constructor |
public function SliderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, thumbIndex:int = -1, value:Number, triggerEvent:Event = null, clickTarget:String = null, keyCode:int = -1)Constructor.
Parameterstype:String — The event type; indicates the action that caused the event.
|
|
bubbles:Boolean (default = false) — Specifies whether the event can bubble
up the display list hierarchy.
|
|
cancelable:Boolean (default = false) — Specifies whether the behavior
associated with the event can be prevented.
|
|
thumbIndex:int (default = -1) — The zero-based index of the thumb
whose position has changed.
|
|
value:Number — The new value of the slider.
|
|
triggerEvent:Event (default = null) — The type of input action.
The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD.
|
|
clickTarget:String (default = null) — Whether the slider track or a slider thumb was pressed.
|
|
keyCode:int (default = -1) — If the event was triggered by a key press,
the keycode for the key.
|
| CHANGE | constant |
public static const CHANGE:String = "change"
The SliderEvent.CHANGE constant defines the value of the
type property of the event object for a change event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
clickTarget | Specifies whether the slider track or a slider thumb was pressed. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
keyCode | If the event was triggered by a key press, the keycode for the key. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
thumbIndex | The zero-based index of the thumb whose position has changed. |
triggerEvent | Contains a value indicating the
type of input action. The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD. |
value | The new value of the slider. |
| THUMB_DRAG | constant |
public static const THUMB_DRAG:String = "thumbDrag"
The SliderEvent.THUMB_DRAG constant defines the value of the
type property of the event object for a thumbDrag event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
clickTarget | Specifies whether the slider track or a slider thumb was pressed. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
keyCode | If the event was triggered by a key press, the keycode for the key. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
thumbIndex | The zero-based index of the thumb whose position has changed. |
triggerEvent | Contains a value indicating the
type of input action. The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD. |
value | The new value of the slider. |
| THUMB_PRESS | constant |
public static const THUMB_PRESS:String = "thumbPress"
The SliderEvent.THUMB_PRESS constant defines the value of the
type property of the event object for a thumbPress event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
clickTarget | Specifies whether the slider track or a slider thumb was pressed. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
keyCode | If the event was triggered by a key press, the keycode for the key. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
thumbIndex | The zero-based index of the thumb whose position has changed. |
triggerEvent | Contains a value indicating the
type of input action. The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD. |
value | The new value of the slider. |
| THUMB_RELEASE | constant |
public static const THUMB_RELEASE:String = "thumbRelease"
The SliderEvent.THUMB_RELEASE constant defines the value of the
type property of the event object for a thumbRelease event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
clickTarget | Specifies whether the slider track or a slider thumb was pressed. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
keyCode | If the event was triggered by a key press, the keycode for the key. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
thumbIndex | The zero-based index of the thumb whose position has changed. |
triggerEvent | Contains a value indicating the
type of input action. The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD. |
value | The new value of the slider. |