hi my flash app is getting error 2028 when trying to communicate with the internet
works fine with flash ide. but when I run swf file with flash player
first i get a warning about unsafe operation then I continue and get SecurityError: Error #2028: Local-with-filesystem SWF file file:///C|/Users.... Error
I know how to solve this in local but I need it to work everywhere not just in my local
I will not upload my swf to any server I just want it to copy it in a flash drive and work anywhere I want
I put crossdomain.xml same dir with the swf and added these 2 lines:(also imported)
Security.allowDomain("*");
Security.loadPolicyFile("crossdomain.xml");
but nothing changes
my crossdomain.xml:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
please help
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…