How to I get my security policy working? My parent swf parses an XML doc and loads 2 children. It throws a 2148 security error, and only works in the Flash IDE.
PARENT SWF 'I put it at the top of my code. That seemed like the proper event flow'
flash.system.Security.loadPolicyFile("crossdomain.xml");
I've referenced my security file from my swf. I Also published my parent swf as 'network only' and put all the crossdomain.xml and everything else in the same folder. I need to click on the animations and have them place from a local computer at a kiosk. Any suggestions?
POLICY FILE 'Used"*" since there's not URL, it's all local'
<?xml version="1.0"?>
<!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="172.16.8.24" />
</cross-domain-policy>