// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved.
package fl.events {
/**
* The student_ar_fl_events_InteractionInputType class defines constants for the values of the
* triggerEvent
property of the SliderEvent object. These constants define strings
* to identify the sources of input that can trigger an event: the mouse and the keyboard.
*
* @see SliderEvent#triggerEvent
*
* @includeExample examples/student_ar_fl_events_InteractionInputTypeExample.as
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
* @internal Can a pointing device that is not a mouse cause these events to be dispatched?
*/
public class student_ar_fl_events_InteractionInputType {
/**
* The student_ar_fl_events_InteractionInputType.MOUSE
constant defines the value of
* the type
property of a mouse
event object.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
* @internal Seems like another type of pointing device could also generate this event?
*/
public static const MOUSE:String = 'mouse';
/**
* The student_ar_fl_events_InteractionInputType.KEYBOARD
constant defines the value of
* the type
property of a keyboard
event object.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static const KEYBOARD:String = 'keyboard';
}
}