views:

262

answers:

1
+1  Q: 

AS3 Error Handling

Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation:

How do I do handle this?

+1  A: 

This seemed to work. Thanks anyways.

import flash.events.SecurityErrorEvent;

l.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);

l.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, SecurityErrorEventExample);

function SecurityErrorEventExample() { var loader:URLLoader = new URLLoader(); loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); var request:URLRequest = new URLRequest("http://www.perdanadesigns.com"); loader.load(request); } function securityErrorHandler(event:SecurityErrorEvent):void { trace("securityErrorHandler: " + event); }