Packagejp.progression.events
Classpublic class ManagerEvent
InheritanceManagerEvent Inheritance flash.events.Event

IManageable インターフェイスを実装したオブジェクトが Progression インスタンスと関連付けられた場合などに ManagerEvent オブジェクトが送出されます。


Example
  // ManagerEvent インスタンスを作成する
  var event:ManagerEvent = new ManagerEvent();
  



Public Properties
 PropertyDefined by
  managerTarget : Object
[read-only] 実行対象となるオブジェクトを取得します。
ManagerEvent
Public Methods
 MethodDefined by
  
ManagerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, managerTarget:Object = null)
新しい ManagerEvent インスタンスを作成します。 Creates a new ManagerEvent object.
ManagerEvent
  
clone():Event
ManagerEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ManagerEvent subclass.
ManagerEvent
  
toString():String
指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ManagerEvent
Public Constants
 ConstantDefined by
  MANAGER_ACTIVATE : String = "managerActivate"
[static] managerActivate イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_ACTIVATE constant defines the value of the type property of an managerActivate event object.
ManagerEvent
  MANAGER_DEACTIVATE : String = "managerDeactivate"
[static] managerDeactivate イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_DEACTIVATE constant defines the value of the type property of an managerDeactivate event object.
ManagerEvent
  MANAGER_LOCK_CHANGE : String = "managerLockChange"
[static] managerLockChange イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_LOCK_CHANGE constant defines the value of the type property of an managerLockChange event object.
ManagerEvent
  MANAGER_READY : String = "managerReady"
[static] managerReady イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_READY constant defines the value of the type property of an managerReady event object.
ManagerEvent
Property detail
managerTargetproperty
managerTarget:Object  [read-only]

実行対象となるオブジェクトを取得します。

Implementation
    public function get managerTarget():Object
Constructor detail
ManagerEvent()constructor
public function ManagerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, managerTarget:Object = null)

新しい ManagerEvent インスタンスを作成します。 Creates a new ManagerEvent object.

Parameters
type:StringManagerEvent.type としてアクセス可能なイベントタイプです。 The type of the event, accessible as ManagerEvent.type.
 
bubbles:Boolean (default = false)ManagerEvent インスタンスがイベントフローのバブリング段階で処理されるかどうかを判断します。デフォルト値は false です。 Determines whether the ManagerEvent object participates in the bubbling stage of the event flow. The default value is false.
 
cancelable:Boolean (default = false)ManagerEvent インスタンスがキャンセル可能かどうかを判断します。デフォルト値は false です。 Determines whether the ManagerEvent object can be canceled. The default values is false.
 
managerTarget:Object (default = null)実行対象となるオブジェクトです。
Method detail
clone()method
public override function clone():Event

ManagerEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ManagerEvent subclass.

Returns
Event元のオブジェクトと同じプロパティ値を含む新しい ManagerEvent インスタンスです。 A new ManagerEvent object that is identical to the original.
toString()method 
public override function toString():String

指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.
Constant detail
MANAGER_ACTIVATEconstant
public static const MANAGER_ACTIVATE:String = "managerActivate"

managerActivate イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_ACTIVATE constant defines the value of the type property of an managerActivate event object.

See also

MANAGER_DEACTIVATEconstant 
public static const MANAGER_DEACTIVATE:String = "managerDeactivate"

managerDeactivate イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_DEACTIVATE constant defines the value of the type property of an managerDeactivate event object.

See also

MANAGER_LOCK_CHANGEconstant 
public static const MANAGER_LOCK_CHANGE:String = "managerLockChange"

managerLockChange イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_LOCK_CHANGE constant defines the value of the type property of an managerLockChange event object.

See also

MANAGER_READYconstant 
public static const MANAGER_READY:String = "managerReady"

managerReady イベントオブジェクトの type プロパティ値を定義します。 The ManagerEvent.MANAGER_READY constant defines the value of the type property of an managerReady event object.

See also