| Package | jp.progression.loader |
| Class | public class PRMLLoader |
| Inheritance | PRMLLoader flash.net.URLLoader |
| Subclasses | EasyCastingLoader |
// PRMLLoader インスタンスを作成する var loader:PRMLLoader = new PRMLLoader();
| Property | Defined by | ||
|---|---|---|---|
| autoGoto : Boolean
読み込み完了後に自動的にシーン移動を開始するかどうかを取得または設定します。
| PRMLLoader | ||
| className : String [read-only]
インスタンスのクラス名を取得します。
Indicates the instance className of the SceneObject.
| PRMLLoader | ||
| container : DisplayObjectContainer [read-only]
関連付けられている DisplayObjectContainer インスタンスを取得します。
| PRMLLoader | ||
| manager : Progression
[read-only]
関連付けられている Progression インスタンスを取得します。
| PRMLLoader | ||
| url : String [read-only]
リクエストされる URL を示すストリングを取得します。
| PRMLLoader | ||
| Method | Defined by | ||
|---|---|---|---|
|
PRMLLoader(container:DisplayObjectContainer, request:URLRequest = null, initObject:Object = null)
新しい PRMLLoader インスタンスを作成します。
Creates a new PRMLLoader object.
| PRMLLoader | ||
|
close():void
進行中のロード操作は直ちに終了します。
Closes the load operation in progress.
| PRMLLoader | ||
|
load(request:URLRequest):void
指定された URL からデータを送信およびロードします。
Sends and loads data from the specified URL.
| PRMLLoader | ||
|
parse(prml:XML):Progression
XML データから Progression インスタンスを作成します。
| PRMLLoader | ||
|
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| PRMLLoader | ||
| autoGoto | property |
autoGoto:Boolean [read-write]読み込み完了後に自動的にシーン移動を開始するかどうかを取得または設定します。
Implementation public function get autoGoto():Boolean
public function set autoGoto(value:Boolean):void
| className | property |
className:String [read-only]インスタンスのクラス名を取得します。 Indicates the instance className of the SceneObject.
Implementation public function get className():String
| container | property |
container:DisplayObjectContainer [read-only]関連付けられている DisplayObjectContainer インスタンスを取得します。
Implementation public function get container():DisplayObjectContainer
| manager | property |
manager:Progression [read-only]関連付けられている Progression インスタンスを取得します。
Implementation public function get manager():Progression
See also
| url | property |
url:String [read-only]リクエストされる URL を示すストリングを取得します。
Implementation public function get url():String
| PRMLLoader | () | constructor |
public function PRMLLoader(container:DisplayObjectContainer, request:URLRequest = null, initObject:Object = null)新しい PRMLLoader インスタンスを作成します。 Creates a new PRMLLoader object.
Parameterscontainer:DisplayObjectContainer — 関連付けたい DisplayObjectContainer インスタンスです。
|
|
request:URLRequest (default = null) — ダウンロードする URL を指定する URLRequest オブジェクトです。このパラメータを省略すると、ロード操作は開始されません。指定すると、直ちにロード操作が開始されます。詳細については、load を参照してください。
A URLRequest object specifying the URL to download.
|
|
initObject:Object (default = null) — 設定したいプロパティを含んだオブジェクトです。
|
| close | () | method |
public override function close():void進行中のロード操作は直ちに終了します。 Closes the load operation in progress.
| load | () | method |
public override function load(request:URLRequest):void指定された URL からデータを送信およびロードします。 Sends and loads data from the specified URL.
Parametersrequest:URLRequest — ダウンロードする URL を指定する URLRequest オブジェクトです。
A URLRequest object specifying the URL to download.
|
| parse | () | method |
public function parse(prml:XML):ProgressionXML データから Progression インスタンスを作成します。
Parametersprml:XML — 生成に使用する XML データです。
|
Progression —
生成された Progression インスタンスです。
|
| toString | () | method |
public override function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString — オブジェクトのストリング表現です。
A string representation of the object.
|