Packagejp.nium.api.tweener
Classpublic class TweenerEvent
InheritanceTweenerEvent Inheritance flash.events.Event

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

View the examples



Public Properties
 PropertyDefined By
  metaError : Error
[read-only] Tweenwe オブジェクトからスローされた例外を取得します。 Acquire the exception thrown by Tweenwe object.
TweenerEvent
Public Methods
 MethodDefined By
  
TweenerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, metaError:Error = null)
新しい TweenerEvent インスタンスを作成します。 Creates a new TweenerEvent object.
TweenerEvent
  
clone():Event
[override] TweenerEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an TweenerEvent subclass.
TweenerEvent
  
toString():String
[override] 指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
TweenerEvent
Public Constants
 ConstantDefined By
  COMPLETE : String = complete
[static] complete イベントオブジェクトの type プロパティ値を定義します。 The TweenerEvent.COMPLETE constant defines the value of the type property of an complete event object.
TweenerEvent
  ERROR : String = error
[static] error イベントオブジェクトの type プロパティ値を定義します。 The TweenerEvent.ERROR constant defines the value of the type property of an error event object.
TweenerEvent
  OVERWRITE : String = overwrite
[static] overwrite イベントオブジェクトの type プロパティ値を定義します。 The TweenerEvent.OVERWRITE constant defines the value of the type property of an overwrite event object.
TweenerEvent
  START : String = start
[static] start イベントオブジェクトの type プロパティ値を定義します。 The TweenerEvent.START constant defines the value of the type property of an start event object.
TweenerEvent
  UPDATE : String = update
[static] update イベントオブジェクトの type プロパティ値を定義します。 The TweenerEvent.UPDATE constant defines the value of the type property of an update event object.
TweenerEvent
Property Detail
metaErrorproperty
metaError:Error  [read-only]

Tweenwe オブジェクトからスローされた例外を取得します。 Acquire the exception thrown by Tweenwe object.


Implementation
    public function get metaError():Error
Constructor Detail
TweenerEvent()Constructor
public function TweenerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, metaError:Error = null)

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

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

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

Returns
Event元のオブジェクトと同じプロパティ値を含む新しい TweenerEvent インスタンスです。 A new TweenerEvent 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
COMPLETEConstant
public static const COMPLETE:String = complete

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

ERRORConstant 
public static const ERROR:String = error

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

OVERWRITEConstant 
public static const OVERWRITE:String = overwrite

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

STARTConstant 
public static const START:String = start

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

UPDATEConstant 
public static const UPDATE:String = update

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

Examples