Ben McMaster
unread,Mar 31, 2011, 1:41:05 PM3/31/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to bumpslide
I am getting this error:
Error: Error #2099: The loading object is not sufficiently loaded to
provide this information.
at flash.display::LoaderInfo/get loader()
at com.bumpslide.net::LoaderQueue/handleLoaderInfoEvent()[/Users/
benmcmaster/Flash/Gaps Crown/Sugarloaf/src/classes/com/bumpslide/net/
LoaderQueue.as:79]
I am using a version of LoaderQueue that is a couple of years old
now... Any one else seen this?
here is the function it is complaining about
private function handleLoaderInfoEvent(event:Event):void {
var loader:Loader = (event.target as LoaderInfo).loader;
finish(loader);
}
it is called from one of these:
loader.contentLoaderInfo.addEventListener(Event.INIT,
handleLoaderInfoEvent, false, 0, true);
loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,
handleLoaderInfoEvent, false, 0, true);
loader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
handleLoaderInfoEvent, false, 0, true);
If it is coming from an IO or Security error... Wouldn't there be a
problem? Is there no LoaderInfo if it errored out?
Thank you!
/Ben