Packageimpression.events
Classpublic class LocationStatusRequestEvent
InheritanceLocationStatusRequestEvent Inheritance StoryboardEvent Inheritance flash.events.Event

An object dispatches a LocationStatusRequestEvent object when it needs to know the aggregate status of a specific location.



Public Properties
 PropertyDefined By
  location : LocationData
[read-only] The location to determine the status of.
LocationStatusRequestEvent
 Inheritedsb : Storyboard
[read-only] The Storyboard object assigned to the target.
StoryboardEvent
  status : String
The aggregate status of the location.
LocationStatusRequestEvent
Public Methods
 MethodDefined By
  
LocationStatusRequestEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, sb:Storyboard = null, location:LocationData = null, status:String = null)
Creates a new instance of a LocationStatusRequestEvent object.
LocationStatusRequestEvent
  
clone():Event
[override] Duplicates an instance of the event object.
LocationStatusRequestEvent
  
toString():String
[override] Returns a string containing all the properties of the LocationStatusRequestEvent object.
LocationStatusRequestEvent
Public Constants
 ConstantDefined By
 InheritedCOMPLETE : String = complete
[static] The StoryboardEvent.COMPLETE constant defines the value of the type property of a complete event object.
StoryboardEvent
 InheritedCONTENT_LOAD_BEGIN : String = contentLoadBegin
[static] The StoryboardEvent.CONTENT_LOAD_BEGIN constant defines the value of the type property of a content load begin event object.
StoryboardEvent
 InheritedCONTENT_LOAD_END : String = contentLoadEnd
[static] The StoryboardEvent.CONTENT_LOAD_END constant defines the value of the type property of a content load end event object.
StoryboardEvent
 InheritedINITIALIZE : String = initialize
[static] The StoryboardEvent.INITIALIZE constant defines the value of the type property of a initialize event object.
StoryboardEvent
 InheritedLOAD_COMPLETE : String = loadComplete
[static] The StoryboardEvent.LOAD_COMPLETE constant defines the value of the type property of a load event object.
StoryboardEvent
 InheritedLOAD_START : String = loadStart
[static] The StoryboardEvent.LOAD_START constant defines the value of the type property of an load start event object.
StoryboardEvent
  LOCATION_STATUS_REQUEST : String = locationStatusRequest
[static] The LocationStatusRequestEvent.LOCATION_STATUS_REQUEST constant defines the value of the type property of a location status request event object.
LocationStatusRequestEvent
 InheritedUNLOAD : String = unload
[static] The StoryboardEvent.UNLOAD constant defines the value of the type property of an unload event object.
StoryboardEvent
Property Detail
locationproperty
location:LocationData  [read-only]

The location to determine the status of.


Implementation
    public function get location():LocationData
statusproperty 
status:String

The aggregate status of the location. Objects defined in the Base Class Framework expect this value to be a LocationStatusTypes constant value.


Implementation
    public function get status():String
    public function set status(value:String):void

See also

Constructor Detail
LocationStatusRequestEvent()Constructor
public function LocationStatusRequestEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, sb:Storyboard = null, location:LocationData = null, status:String = null)

Creates a new instance of a LocationStatusRequestEvent object.

Parameters
type:String — The type of the event. Event listeners can access this information through the inherited type property.
 
bubbles:Boolean (default = false) — Determines whether the event object participates in the bubbling phase of the event flow. Event listeners can access this information through the inheritied bubbles property.
 
cancelable:Boolean (default = false) — Determines whether the event object can be canceled. Event listeners can access this information through the inherited cancelable property.
 
sb:Storyboard (default = null) — The Storyboard object assigned to the target. Event listeners can access this information through the inherited sb property.
 
location:LocationData (default = null) — The location to determine the status of. Event listeners can access this information through the location property.
 
status:String (default = null) — The aggregate status of the location. Event listeners can access this information through the status property.
Method Detail
clone()method
override public function clone():Event

Duplicates an instance of the event object.

Returns a new LocationStatusRequestEvent object that is a copy of the original instance of the LocationStatusRequestEvent object. You do not normally call clone(); the EventDispatcher class calls it automatically when you redispatch an event--that is, when you call dispatchEvent(event) from a handler that is handling event.

Returns
Event — A new LocationStatusRequestEvent object that is identical to the original.
toString()method 
override public function toString():String

Returns a string containing all the properties of the LocationStatusRequestEvent object. The string is in the following format:

[LocationStatusRequestEvent type=value bubbles=value cancelable=value eventPhase=value sb=value location=value status=value]

Returns
String — A string containing all the properties of the LocationStatusRequestEvent object.
Constant Detail
LOCATION_STATUS_REQUESTConstant
public static const LOCATION_STATUS_REQUEST:String = locationStatusRequest

The LocationStatusRequestEvent.LOCATION_STATUS_REQUEST constant defines the value of the type property of a location status request event object. This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe object that raised the event.
sbThe Storyboard object assigned to the target.
locationThe location to determine the status of.
status