Packagejp.nium.events
Classpublic class ExEvent
InheritanceExEvent Inheritance flash.events.Event

ExEvent クラスは、jp.nium パッケージで使用される基本的な Event クラスとして使用されます。


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



Public Methods
 MethodDefined by
  
ExEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
新しい ExEvent インスタンスを作成します。 Creates a new ExEvent object.
ExEvent
  
clone():Event
ExEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ExEvent subclass.
ExEvent
  
toString():String
指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ExEvent
Public Constants
 ConstantDefined by
  EX_READY : String = "exReady"
[static] ready イベントオブジェクトの type プロパティ値を定義します。 The ExEvent.EX_READY constant defines the value of the type property of an ready event object.
ExEvent
  EX_RESIZE_COMPLETE : String = "exResizeComplete"
[static] resizeComplete イベントオブジェクトの type プロパティ値を定義します。 The ExEvent.EX_RESIZE_COMPLETE constant defines the value of the type property of an resizeComplete event object.
ExEvent
  EX_RESIZE_PROGRESS : String = "exResizeProgress"
[static] resizeProgress イベントオブジェクトの type プロパティ値を定義します。 The ExEvent.EX_RESIZE_PROGRESS constant defines the value of the type property of an resizeProgress event object.
ExEvent
  EX_RESIZE_START : String = "exResizeStart"
[static] resizeStart イベントオブジェクトの type プロパティ値を定義します。 The ExEvent.EX_RESIZE_START constant defines the value of the type property of an resizeStart event object.
ExEvent
Constructor detail
ExEvent()constructor
public function ExEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

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

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

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

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

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

See also

EX_RESIZE_COMPLETEconstant 
public static const EX_RESIZE_COMPLETE:String = "exResizeComplete"

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

See also

flash.display.Stage.exResizeComplete
EX_RESIZE_PROGRESSconstant 
public static const EX_RESIZE_PROGRESS:String = "exResizeProgress"

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

See also

flash.display.Stage.exResizeProgress
EX_RESIZE_STARTconstant 
public static const EX_RESIZE_START:String = "exResizeStart"

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

See also

flash.display.Stage.exResizeStart