currentState:String  [read-only] 
		 The object's current state.
		 
		 
 Implementation     public function get currentState():StringSee also
Event Object Type: starling.events.EventEvent.type property = feathers.events.FeathersEventType.STATE_CHANGE
	 Dispatched when the display object's state changes.
	 	 
The properties of the event object have the following values:
	 | Property | Value | 
|---|
bubbles | false | 
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. | 
data | null | 
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. | 
	 	 
		 The 
FeathersEventType.STATE_CHANGE event type is used by
		 Feathers classes that implement the 
IStateContext
		 interface.