Loader.hx 443 B

1234567891011
  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. }