1 2 3 4 5 6 7 8 9 10 11 12 13
|
package flash.display;
extern class Loader extends DisplayObjectContainer {
var content(default,null) : DisplayObject;
var contentLoaderInfo(default,null) : LoaderInfo;
@:require(flash10_1) var uncaughtErrorEvents(default,null) : flash.events.UncaughtErrorEvents;
function new() : Void;
function close() : Void;
function load(request : flash.net.URLRequest, ?context : flash.system.LoaderContext) : Void;
function loadBytes(bytes : flash.utils.ByteArray, ?context : flash.system.LoaderContext) : Void;
function unload() : Void;
@:require(flash10) function unloadAndStop(gc : Bool = true) : Void;
}
|