Is there a way to override Loader and/or URLLoader? I have a unique situation here where I need to get developers' existing projects working with some custom pathing.
In AS1/AS2 you could use prototype to overwrite methods of things like MovieClip, XML, etc. In AS3 this doesn't seem to be possible with the built-in objects, like Loader, URLLoader, etc. I tried using -as3=false -es=true and overwriting Loader.prototype.load but to no avail - the Loader.load is always used, contrary to what the docs seem to indicate. Creating a different class for the devs to use isn't really an option, since I need to make sure all paths are affected, whether they are using their own code or components, etc. Is this possible? -- Derek Vadneau

