Packagejp.nium.api.transition
Classpublic class TransitionEvent
InheritanceTransitionEvent Inheritance flash.events.Event

TransitionHelper オブジェクトを実行した場合に TransitionEvent オブジェクトが送出されます。 When the TransitionHelper object is executed, the TransitionEvent object is sent.

View the examples



Public Methods
 MethodDefined By
  
TransitionEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
新しい TransitionEvent インスタンスを作成します。 Creates a new TransitionEvent object.
TransitionEvent
  
clone():Event
[override] TransitionEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an TransitionEvent subclass.
TransitionEvent
  
toString():String
[override] 指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
TransitionEvent
Public Constants
 ConstantDefined By
  ALL_TRANSITIONS_IN_DONE : String = allTransitionsInDone
[static] allTransitionsInDone イベントオブジェクトの type プロパティ値を定義します。 The TransitionEvent.ALL_TRANSITIONS_IN_DONE constant defines the value of the type property of an allTransitionsInDone event object.
TransitionEvent
  ALL_TRANSITIONS_OUT_DONE : String = allTransitionsOutDone
[static] allTransitionsOutDone イベントオブジェクトの type プロパティ値を定義します。 The TransitionEvent.ALL_TRANSITIONS_OUT_DONE constant defines the value of the type property of an allTransitionsOutDone event object.
TransitionEvent
  TRANSITION_IN_DONE : String = transitionInDone
[static] transitionInDone イベントオブジェクトの type プロパティ値を定義します。 The TransitionEvent.TRANSITION_IN_DONE constant defines the value of the type property of an transitionInDone event object.
TransitionEvent
  TRANSITION_OUT_DONE : String = transitionOutDone
[static] transitionOutDone イベントオブジェクトの type プロパティ値を定義します。 The TransitionEvent.TRANSITION_OUT_DONE constant defines the value of the type property of an transitionOutDone event object.
TransitionEvent
  TRANSITION_PROGRESS : String = transitionProgress
[static] transitionProgress イベントオブジェクトの type プロパティ値を定義します。 The TransitionEvent.TRANSITION_PROGRESS constant defines the value of the type property of an transitionProgress event object.
TransitionEvent
Constructor Detail
TransitionEvent()Constructor
public function TransitionEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

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

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

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

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

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

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.
Constant Detail
ALL_TRANSITIONS_IN_DONEConstant
public static const ALL_TRANSITIONS_IN_DONE:String = allTransitionsInDone

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

ALL_TRANSITIONS_OUT_DONEConstant 
public static const ALL_TRANSITIONS_OUT_DONE:String = allTransitionsOutDone

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

TRANSITION_IN_DONEConstant 
public static const TRANSITION_IN_DONE:String = transitionInDone

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

TRANSITION_OUT_DONEConstant 
public static const TRANSITION_OUT_DONE:String = transitionOutDone

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

TRANSITION_PROGRESSConstant 
public static const TRANSITION_PROGRESS:String = transitionProgress

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

Examples