/bin/std/flash9/display/Loader.hx
http://github.com/Yoomee/clippy · Haxe · 15 lines · 13 code · 2 blank · 0 comment · 0 complexity · 00aed893aac71cfbf11a604998a932ec MD5 · raw file
- package flash.display;
- extern class Loader extends DisplayObjectContainer {
- var content(default,null) : DisplayObject;
- var contentLoaderInfo(default,null) : LoaderInfo;
- 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;
-
- #if flash10
- function unloadAndStop(?gc : Bool) : Void;
- #end
- }