Search the Community
Showing results for tags '2044'.
-
Hello Greensock, I will try to explain my problem the best I can… I have a swf that is loading some data and other various assets, and the first thing it does is instantiating the following LoaderMax: var selfLoader:SelfLoader = new SelfLoader(this, { name:"self", estimatedBytes:364544, onProgress:_progressHandler } ); var aspLoader:DataLoader = new DataLoader(initreq, { name:"init", estimatedBytes:100, format:"variables", allowMalformedURL:true, onProgress:_progressHandler } ); var initqueue:LoaderMax = new LoaderMax( { name:"initQueue", maxConnections:1, skipFailed:false, onProgress:_partialProgressHandler, onComplete:_initQueueCompleteHandler, onError:_errorHandler} ); //prioritize the self loader LoaderMax.prioritize("self"); //append the SelfLoader and several other loaders initqueue.append(selfLoader); initqueue.append(aspLoader); //start loading the LoaderMax queue initqueue.load(); The LoaderMax classes I am using are: * VERSION: 1.921 * DATE: 2012-08-09 and unfortunately I cannot update them to the newer version. I’m publishing with Flash Professional CS5.5 for Flash Player 10.2. To reproduce the problem, I use Chrome with Flash Debug Player version 11,5,502,110 installed; I also need to use a bandwidth simulator to clip down the average download speed (for example I use Fiddler with its own Bandwidth simulator plugin). If I hit F5 / refresh the page while the SelfLoader is still loading, the debug player throws an uncaught exception of type “Error #2044: uncaught IOErrorEvent” in conjunction with “Error #2036 Load never completed”. I already have read the following topic with no avail: http://forums.greensock.com/topic/2762-error-2036-load-never-completed/ since as I said I use Flash CS5.5 IDE… I don’t know what else to do!
- 4 replies
-
- selfloader
- uncaught
-
(and 2 more)
Tagged with: