DisplayObjectContainerにDisplayObjectを追加・削除した時のイベント

Event.ADDED

addedイベントは、DisplayObjectContainerのaddChildまたはaddChildAt関数でDisplayObjectが追加されたときに送られるEventオブジェクトです。

Example

Event.ADDED_TO_STAGE

addedToStageイベントは、同様のイベントですが、DisplayObjectContainerがDisplayListに追加され、画面に表示されたときに送出されるEventオブジェクトとなります。

Example

Event.REMOVED

removed イベントは、DisplayObjectContainerのremoveChild もしくはremoveChildAt関数を用いて DisplayObjectContainerからDisplayObjectが削除される際に送られるイベントオブジェクトです。また、addChildとaddChildAt関数を使用して、DisplayObjectContainer が既存の位置から指定された位置に移動された場合にも送られます。

Example

Event.REMOVED_FROM_STAGE

removedFromStageイベントは、同様のイベントですが、DisplayObjectContainerがDisplayListから削除され、画面から消えたときに送出されるEventオブジェクトです。

Example

次のチャプター