Packagecom.adobe.mediacore.events
Classpublic class LoadInformationEvent
InheritanceLoadInformationEvent Inheritance flash.events.Event

Event dispatched by MediaPlayer when download information is available for the current media stream being played.



Public Properties
 PropertyDefined By
  loadInformation : LoadInformation
[read-only] The load information associated with this event.
LoadInformationEvent
Public Methods
 MethodDefined By
  
LoadInformationEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, loadInformation:LoadInformation = null)
Default constructor
LoadInformationEvent
  
clone():Event
[override]
LoadInformationEvent
  
create(type:String, loadInformation:LoadInformation):LoadInformationEvent
[static] Helper method for creating LoadInformation events.
LoadInformationEvent
Public Constants
 ConstantDefined By
  LOAD_INFORMATION_AVAILABLE : String = loadInformationAvailable
[static] Event dispatched when a new load information is created for the current item.
LoadInformationEvent
Property Detail
loadInformationproperty
loadInformation:LoadInformation  [read-only]

The load information associated with this event.


Implementation
    public function get loadInformation():LoadInformation
Constructor Detail
LoadInformationEvent()Constructor
public function LoadInformationEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, loadInformation:LoadInformation = null)

Default constructor

Parameters
type:String — Event type.
 
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.
 
loadInformation:LoadInformation (default = null) — Associated LoadInformation object.
Method Detail
clone()method
override public function clone():Event

Returns
Event
create()method 
public static function create(type:String, loadInformation:LoadInformation):LoadInformationEvent

Helper method for creating LoadInformation events.

Parameters

type:String — Event type.
 
loadInformation:LoadInformation — Associated LoadInformation object.

Returns
LoadInformationEvent — a valid LoadInformationEvent instance.
Constant Detail
LOAD_INFORMATION_AVAILABLEConstant
public static const LOAD_INFORMATION_AVAILABLE:String = loadInformationAvailable

Event dispatched when a new load information is created for the current item. The newly created LoadInformation object can be accessed through loadInformation property of this event.