Here is two crossdomain scripts for actionscript3.
The first snippet belongs in the root and the second belongs in the folder where the data is to be loaded.
The first snippet belongs in the root and the second belongs in the folder where the data is to be loaded.
<!-- Snippet 1 -->
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE cross-domain-policy SYSTEM 'http://www.adobe.com/xml/dtds/cross-domain-policy.dtd'>
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*"/>
</cross-domain-policy>
<!-- Snippet 2 -->
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE cross-domain-policy SYSTEM 'http://www.adobe.com/xml/dtds/cross-domain-policy.dtd'>
<cross-domain-policy>
<allow-access-from domain="*.mydomain.com" />
</cross-domain-policy>
