| Package | jp.progression.casts |
| Class | public class CastSprite |
| Inheritance | CastSprite ExSprite flash.display.Sprite |
| Implements | jp.progression.core.impls.ICastObject, jp.progression.core.impls.IManageable |
// CastSprite インスタンスを作成する
var cast:CastSprite = new CastSprite();
cast.graphics.beginFill( 0x000000 );
cast.graphics.drawRect( 0, 0, 100, 100 );
cast.graphics.endFill();
// 画面設置時のイベントを設定する
cast.onCastAdded = function():void {
trace( "表示されました" );
};
cast.onCastRemoved = function():void {
trace( "消去されました" );
};
// SerialList コマンドを実行する
new SerialList( null,
// 画面に表示する
new AddChild( this, cast ),
// 画面から消去する
new RemoveChild( this, cast )
).execute();
See also
| Property | Defined by | ||
|---|---|---|---|
![]() | children : Array
子ディスプレイオブジェクトが保存されている配列です。
インデックス値が断続的に指定可能であるため、getChildAt() ではなくこのプロパティを使用して子ディスプレイオブジェクト走査を行います。
この配列を操作することで元の配列を変更することはできません。
The array that saves child display objects.
| ExSprite | |
![]() | className : String
インスタンスのクラス名を取得します。
Indicates the instance className of the IExDisplayObject.
| ExSprite | |
| contextMenu : ContextMenu
このオブジェクトに関連付けられたコンテキストメニューを指定します。
Specifies the context menu associated with this object.
| CastSprite | ||
| executor : ExecutorObject
[read-only]
関連付けられている ExecutorObject インスタンスを取得します。
| CastSprite | ||
![]() | group : String
インスタンスのグループ名を取得または設定します。
Indicates the instance group of the IExDisplayObject.
| ExSprite | |
![]() | id : String
インスタンスの識別子を取得または設定します。
Indicates the instance id of the IExDisplayObject.
| ExSprite | |
![]() | isDragging : Boolean
startDrag() メソッドを使用したドラッグ処理を行っている最中かどうかを取得します。
Returns if the drag process which uses startDrag() method is executing.
| ExSprite | |
| manager : Progression
[read-only]
関連付けられている Progression インスタンスを取得します。
| CastSprite | ||
| onCastAdded : Function
キャストオブジェクトが CastEvent.CAST_ADDED イベントを受け取った場合に呼び出されるイベントハンドラメソッドを取得または設定します。
このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| CastSprite | ||
| onCastRemoved : Function
キャストオブジェクトが CastEvent.CAST_REMOVED イベントを受け取った場合に呼び出されるイベントハンドラメソッドを取得または設定します。
このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| CastSprite | ||
| self : CastSprite
[read-only]
自身の参照を取得します。
| CastSprite | ||
| toolTip : IToolTip
関連付けられている IToolTip インスタンスを取得します。
| CastSprite | ||
![]() | useChildIndexer : Boolean | ExSprite | |
| Method | Defined by | ||
|---|---|---|---|
|
CastSprite(initObject:Object = null)
新しい CastSprite インスタンスを作成します。
Creates a new CastSprite object.
| CastSprite | ||
![]() |
addChild(child:DisplayObject):DisplayObject
この DisplayObjectContainer インスタンスに子 DisplayObject インスタンスを追加します。
Adds a child DisplayObject instance to this DisplayObjectContainer instance.
| ExSprite | |
![]() |
addChildAt(child:DisplayObject, index:int):DisplayObject
この DisplayObjectContainer インスタンスの指定されたインデックス位置に子 DisplayObject インスタンスを追加します。
Adds a child DisplayObject instance to this DisplayObjectContainer instance.
| ExSprite | |
![]() |
addChildAtAbove(child:DisplayObject, index:int):DisplayObject
この DisplayObjectContainer インスタンスの指定されたインデックス位置に子 DisplayObject インスタンスを追加します。
Adds a child DisplayObject instance to this DisplayObjectContainer instance.
| ExSprite | |
|
addCommand(... commands):void
特定のイベントが送出された際に、自動実行させたい Command インスタンスをリストの最後尾に追加します。
追加された Command インスタンスは、イベントが送出される直前に自動的に初期化されます。
このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
| CastSprite | ||
|
clearCommand(completely:Boolean = false):void
登録されている Command インスタンスを削除します。
このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
| CastSprite | ||
|
dispose():void
保持しているデータを解放します。
| CastSprite | ||
![]() |
getChildAt(index:int):DisplayObject
指定のインデックス位置にある子表示オブジェクトオブジェクトを返します。
Returns the child display object instance that exists at the specified index.
| ExSprite | |
![]() |
getChildIndex(child:DisplayObject):int
子 DisplayObject インスタンスのインデックス位置を返します。
Returns the index position of a child DisplayObject instance.
| ExSprite | |
|
insertCommand(... commands):void
特定のイベントが送出された際に、自動実行させたい Command インスタンスをすでにリストに登録され、実行中の Command インスタンスの次の位置に追加します。
追加された Command インスタンスは、イベントが送出される直前に自動的に初期化されます。
このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
| CastSprite | ||
![]() |
removeAllChildren():void
DisplayObjectContainer に追加されている全ての子 DisplayObject インスタンスを削除します。
Remove the whole child DisplayObject instance which added to the DisplayObjectContainer.
| ExSprite | |
![]() |
removeChild(child:DisplayObject):DisplayObject
DisplayObjectContainer インスタンスの子リストから指定の DisplayObject インスタンスを削除します。
Removes the specified child DisplayObject instance from the child list of the DisplayObjectContainer instance.
| ExSprite | |
![]() |
removeChildAt(index:int):DisplayObject
DisplayObjectContainer の子リストの指定されたインデックス位置から子 DisplayObject インスタンスを削除します。
Removes a child DisplayObject from the specified index position in the child list of the DisplayObjectContainer.
| ExSprite | |
![]() |
setChildIndex(child:DisplayObject, index:int):void
表示オブジェクトコンテナの既存の子の位置を変更します。
Changes the position of an existing child in the display object container.
| ExSprite | |
![]() |
setChildIndexAbove(child:DisplayObject, index:int):void
表示オブジェクトコンテナの既存の子の位置を変更します。
Changes the position of an existing child in the display object container.
| ExSprite | |
![]() |
setProperties(parameters:Object):DisplayObject
インスタンスに対して、複数のプロパティを一括設定します。
Setup the several instance properties.
| ExSprite | |
![]() |
startDrag(lockCenter:Boolean = false, bounds:Rectangle = null):void
指定されたスプライトをユーザーがドラッグできるようにします。
Allow the user to drag the specified sprite.
| ExSprite | |
![]() |
stopDrag():void
startDrag() メソッドを終了します。
Ends the startDrag() method.
| ExSprite | |
![]() |
swapChildren(child1:DisplayObject, child2:DisplayObject):void
指定された 2 つの子オブジェクトの z 順序(重ね順)を入れ替えます。
Swaps the z-order (front-to-back order) of the two specified child objects.
| ExSprite | |
![]() |
swapChildrenAt(index1:int, index2:int):void
子リスト内の指定されたインデックス位置に該当する 2 つの子オブジェクトの z 順序(重ね順)を入れ替えます。
Swaps the z-order (front-to-back order) of the child objects at the two specified index positions in the child list.
| ExSprite | |
![]() |
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| ExSprite | |
|
updateManager():Boolean
マネージャーオブジェクトとの関連付けを更新します。
| CastSprite | ||
| Method | Defined by | ||
|---|---|---|---|
|
atCastAdded():void
キャストオブジェクトが CastEvent.CAST_ADDED イベントを受け取った場合に呼び出されるオーバーライド・イベントハンドラメソッドです。
このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| CastSprite | ||
|
atCastRemoved():void
キャストオブジェクトが CastEvent.CAST_REMOVED イベントを受け取った場合に呼び出されるオーバーライド・イベントハンドラメソッドです。
このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| CastSprite | ||
| Event | Summary | Defined by | ||
|---|---|---|---|---|
| IExecutable オブジェクトが AddChild コマンド、または AddChildAt コマンド経由で表示リストに追加された場合に送出されます。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。 | CastSprite | |||
| CastEvent.CAST_ADDED イベント中に実行された非同期処理が完了した場合に送出されます。 | CastSprite | |||
| IExecutable オブジェクトが RemoveChild コマンド、または RemoveAllChild コマンド経由で表示リストから削除された場合に送出されます。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。 | CastSprite | |||
| CastEvent.CAST_REMOVED イベント中に実行された非同期処理が完了した場合に送出されます。 | CastSprite | |||
| 非同期処理中にエラーが発生した場合に送出されます。 | CastSprite | |||
| Progression インスタンスとの関連付けがアクティブになったときに送出されます。 | CastSprite | |||
| Progression インスタンスとの関連付けが非アクティブになったときに送出されます。 | CastSprite | |||
| contextMenu | property |
contextMenu:ContextMenu [read-write]このオブジェクトに関連付けられたコンテキストメニューを指定します。 Specifies the context menu associated with this object.
Implementation public function get contextMenu():ContextMenu
public function set contextMenu(value:ContextMenu):void
| executor | property |
executor:ExecutorObject [read-only]関連付けられている ExecutorObject インスタンスを取得します。
Implementation public function get executor():ExecutorObject
See also
| manager | property |
manager:Progression [read-only]関連付けられている Progression インスタンスを取得します。
Implementation public function get manager():Progression
See also
| onCastAdded | property |
onCastAdded:Function [read-write]キャストオブジェクトが CastEvent.CAST_ADDED イベントを受け取った場合に呼び出されるイベントハンドラメソッドを取得または設定します。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
Implementation public function get onCastAdded():Function
public function set onCastAdded(value:Function):void
See also
| onCastRemoved | property |
onCastRemoved:Function [read-write]キャストオブジェクトが CastEvent.CAST_REMOVED イベントを受け取った場合に呼び出されるイベントハンドラメソッドを取得または設定します。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
Implementation public function get onCastRemoved():Function
public function set onCastRemoved(value:Function):void
See also
| self | property |
| toolTip | property |
toolTip:IToolTip [read-write]関連付けられている IToolTip インスタンスを取得します。
Implementation public function get toolTip():IToolTip
public function set toolTip(value:IToolTip):void
| CastSprite | () | constructor |
public function CastSprite(initObject:Object = null)新しい CastSprite インスタンスを作成します。 Creates a new CastSprite object.
ParametersinitObject:Object (default = null) — 設定したいプロパティを含んだオブジェクトです。
|
| addCommand | () | method |
public function addCommand(... commands):void特定のイベントが送出された際に、自動実行させたい Command インスタンスをリストの最後尾に追加します。 追加された Command インスタンスは、イベントが送出される直前に自動的に初期化されます。 このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
Parameters... commands — 登録したいコマンドを含む配列です。
|
See also
| atCastAdded | () | method |
protected function atCastAdded():voidキャストオブジェクトが CastEvent.CAST_ADDED イベントを受け取った場合に呼び出されるオーバーライド・イベントハンドラメソッドです。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
See also
| atCastRemoved | () | method |
protected function atCastRemoved():voidキャストオブジェクトが CastEvent.CAST_REMOVED イベントを受け取った場合に呼び出されるオーバーライド・イベントハンドラメソッドです。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
See also
| clearCommand | () | method |
public function clearCommand(completely:Boolean = false):void登録されている Command インスタンスを削除します。 このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
Parameterscompletely:Boolean (default = false) — true が設定されている場合は登録されている全てのコマンド登録を解除し、false の場合には現在処理中のコマンド以降の登録を解除します。
|
See also
| dispose | () | method |
public function dispose():void保持しているデータを解放します。
| insertCommand | () | method |
public function insertCommand(... commands):void特定のイベントが送出された際に、自動実行させたい Command インスタンスをすでにリストに登録され、実行中の Command インスタンスの次の位置に追加します。 追加された Command インスタンスは、イベントが送出される直前に自動的に初期化されます。 このメソッドを使用するためには executor プロパティに CommandExecutor が実装されている必要があります。
Parameters... commands — 登録したいコマンドを含む配列です。
|
See also
| updateManager | () | method |
public function updateManager():Booleanマネージャーオブジェクトとの関連付けを更新します。
ReturnsBoolean — 関連付けが成功したら true を、それ以外は false を返します。
|
See also
| castAdded | event |
jp.progression.events.CastEvent
IExecutable オブジェクトが AddChild コマンド、または AddChildAt コマンド経由で表示リストに追加された場合に送出されます。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| castAddedComplete | event |
jp.progression.events.CastEvent
CastEvent.CAST_ADDED イベント中に実行された非同期処理が完了した場合に送出されます。
| castRemoved | event |
jp.progression.events.CastEvent
IExecutable オブジェクトが RemoveChild コマンド、または RemoveAllChild コマンド経由で表示リストから削除された場合に送出されます。 このイベント処理の実行中には、ExecutorObject を使用した非同期処理が行えます。
| castRemovedComplete | event |
jp.progression.events.CastEvent
CastEvent.CAST_REMOVED イベント中に実行された非同期処理が完了した場合に送出されます。
| executeError | event |
| managerActivate | event |
| managerDeactivate | event |