R – Preventing error from being thrown in child swf

actionscript-3apache-flexflex3

I want to load user submitted swf files into a parent Flex application. I'll be loading the swf from a different sandbox and i will deliberately not be granting security access.

Often flash applications will have functions that try to access the stage, and in this case the child swf would throw an error because it would not have access.

I want to prevent such errors in the child swfs from causing actionscript debug error windows to pop up. Does anyone know if this is possible, with code in my parent app?

Related Topic