| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 
 | package flash.display;
extern class LoaderInfo extends flash.events.EventDispatcher {
	@:flash.property var actionScriptVersion(get,never) : ActionScriptVersion;
	@:flash.property var applicationDomain(get,never) : flash.system.ApplicationDomain;
	@:flash.property var bytes(get,never) : flash.utils.ByteArray;
	@:flash.property var bytesLoaded(get,never) : UInt;
	@:flash.property var bytesTotal(get,never) : UInt;
	@:flash.property var childAllowsParent(get,never) : Bool;
	@:flash.property @:require(flash11_4) var childSandboxBridge(get,set) : Dynamic;
	@:flash.property var content(get,never) : DisplayObject;
	@:flash.property var contentType(get,never) : String;
	@:flash.property var frameRate(get,never) : Float;
	@:flash.property var height(get,never) : Int;
	@:flash.property @:require(flash10_1) var isURLInaccessible(get,never) : Bool;
	@:flash.property var loader(get,never) : Loader;
	@:flash.property var loaderURL(get,never) : String;
	@:flash.property var parameters(get,never) : Dynamic<String>;
	@:flash.property var parentAllowsChild(get,never) : Bool;
	@:flash.property @:require(flash11_4) var parentSandboxBridge(get,set) : Dynamic;
	@:flash.property var sameDomain(get,never) : Bool;
	@:flash.property var sharedEvents(get,never) : flash.events.EventDispatcher;
	@:flash.property var swfVersion(get,never) : UInt;
	@:flash.property @:require(flash10_1) var uncaughtErrorEvents(get,never) : flash.events.UncaughtErrorEvents;
	@:flash.property var url(get,never) : String;
	@:flash.property var width(get,never) : Int;
	private function get_actionScriptVersion() : ActionScriptVersion;
	private function get_applicationDomain() : flash.system.ApplicationDomain;
	private function get_bytes() : flash.utils.ByteArray;
	private function get_bytesLoaded() : UInt;
	private function get_bytesTotal() : UInt;
	private function get_childAllowsParent() : Bool;
	private function get_childSandboxBridge() : Dynamic;
	private function get_content() : DisplayObject;
	private function get_contentType() : String;
	private function get_frameRate() : Float;
	private function get_height() : Int;
	private function get_isURLInaccessible() : Bool;
	private function get_loader() : Loader;
	private function get_loaderURL() : String;
	private function get_parameters() : Dynamic<String>;
	private function get_parentAllowsChild() : Bool;
	private function get_parentSandboxBridge() : Dynamic;
	private function get_sameDomain() : Bool;
	private function get_sharedEvents() : flash.events.EventDispatcher;
	private function get_swfVersion() : UInt;
	private function get_uncaughtErrorEvents() : flash.events.UncaughtErrorEvents;
	private function get_url() : String;
	private function get_width() : Int;
	private function set_childSandboxBridge(value : Dynamic) : Dynamic;
	private function set_parentSandboxBridge(value : Dynamic) : Dynamic;
	static function getLoaderInfoByDefinition(object : Dynamic) : LoaderInfo;
}
 |