/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

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