Dispatched when a property of the FlexClient singleton changes.
FlexClient
Property Detail
id
property
id:String
Language Version :
ActionScript 3.0
Product Versions :
BlazeDS 4, LCDS 3
Runtime Versions :
Flash Player 9, AIR 1.1
The global FlexClient Id for this Player instance.
This value is server assigned and is set as part of the Channel connect process.
Once set, it will not change for the duration of the Player instance's lifespan.
If no Channel has connected to a server this value is null.
This property can be used as the source for data binding.
Implementation public function get id():String public function set id(value:String):void
Dispatched when a property of the FlexClient singleton changes.
Listeners must be added via FlexClient.getInstance().addEventListener(...).
The PropertyChangeEvent.PROPERTY_CHANGE constant defines the value of the
type property of the event object for a PropertyChange event.
The properties of the event object have the following values:
Property
Value
bubbles
Determined by the constructor; defaults to false.
cancelable
Determined by the constructor; defaults to false.
kind
The kind of change; PropertyChangeEventKind.UPDATE
or PropertyChangeEventKind.DELETE.
oldValue
The original property value.
newValue
The new property value, if any.
property
The property that changed.
source
The object that contains the property that changed.
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.
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.