Error #2044: Ioerrorevent not processed:. Text=error #2035: The URL is not found this is an issue that is sometimes encountered when flash loads external resources, which are resolved as follows

Source: Internet
Author: User
Tags event listener

The main reason for this error is that no IOErrorEvent event Listener was added, or the listener was added, but the unload () was used when loading

Resources:

http://blog.csdn.net/chjh0540237/article/details/9325797

Error #2044: Ioerrorevent not processed:. Text=error #2035: The URL is not found This is an issue that is sometimes encountered when flash loads external resources, which are resolved as follows

Add IOErrorEvent event Listener, different for loader and Urlloader

var loader:Loader = new Loader();

loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onError);


var urlLoader:URLLoader = new URLLoader; urlLoader.addEventListener(IOErrorEvent.IO_ERROR, onError);

Refer to: http://hub.tutsplus.com/tutorials/quick-tip-how-to-debug-an-as3-error-2044--active-9675?request_uri=% 2FTUTORIALS%2FACTIONSCRIPT%2FQUICK-TIP-HOW-TO-DEBUG-AN-AS3-ERROR-2044%2F, here's a detailed explanation


under normal circumstances, all the added listening places to add monitoring, so that the problem can be resolved. Under special circumstances, such as unlucky me, engineering all use of Urlloader and loader I have added monitoring, but the problem is still, finally after a long struggle, found that the problem is here: I will clean up when the load succeeds, then call the loader unloadandstop (), This is the original, do not know why it caused such a problem, the reason is still to be solved (may be due to call this method also cleared the ioerrorevnet distribution, just guess but still do not understand how to report this error), and finally replaced by the Unload () method, only calm

Error #2044: Ioerrorevent not processed:. Text=error #2035: The URL is not found this is an issue that is sometimes encountered when flash loads external resources, which are resolved as follows

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.