This probably isn't of much help, but for what it's worth, I've tried to
reproduce this problem using the sample code with no success on both IE 6
and FF 2. I'm using FP 9.0.124, debug version, and am running Windows XP.

Cheers
Juan Pablo Califano


2008/6/12, Ashim D'Silva <[EMAIL PROTECTED]>:
>
> I only started getting this error when I switched to the debug player. Seem
> to get stream errors as well, when nothing is loading!If it is a feature of
> the debug feature; is there a way to disable the debug part of the player?
> I
> wouldn't want to keep reinstalling different versions of flash for browsing
> and developing!
>
> 2008/6/13 Steven Sacks <[EMAIL PROTECTED]>:
>
> > I posted this to Flash_tiger but it seems to be down or something, so I'm
> > xposting it here.
> >
> > Am I missing something, or is this a bug with the Flash player (9.0.124)?
> >
> > If you're loading something and during the load you close the browser,
> the
> > Flash player spits out an Error #2044, from either ioError or
> IOErrorEvent
> > or both.
> >
> > Error #2044: Unhandled ioError:. text=Error #2036: Load Never Completed.
> > Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never
> > Completed.
> >
> > Ok, fine. Adobe wants to enforce strictness even when you're annihilating
> > the swf, I can deal with that, or so I thought...
> >
> > I listen for the IOErrorEvent and I try..catch the load and Flash still
> > spits out the same error.  What gives?   Flash still throws an allegedly
> > unhandled error that I am most assuredly handling?
> >
> > Sample code:
> >
> > _loader = new Loader();
> > _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,
> onError,
> > false, 0, true);
> >
> > try
> > {
> >   _loader.load(request);
> > }
> > catch (error:Error)
> > {
> >   trace("Caught error!", error.name + " :: " + error.message);
> > }
> >
> > function onError(event:IOErrorEvent):void
> > {
> >   trace("onError", event);
> > }
> >
> > I believe I'm doing everything I should do to capture these errors and I
> > still get them.  Why?
> >
> > _______________________________________________
> > Flashcoders mailing list
> > [email protected]
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
>
> --
> Random Lines 3D
> My online portfolio
> www.therandomlines.com
> _______________________________________________
> Flashcoders mailing list
> [email protected]
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to