actionscript - flash path for crossdomain.xml -


i new flash, had found flash swf files need crossdomain.xml file, need deploy code 1 server server. while trying login application. found crossdomain.xml file path points old server , hence access restricted, doubt configure or due cahce in flash actionscript , how can clear cache of action scripts

it number of things

try altering cross domain xml:

<?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="master-only"/>     <allow-access-from domain="*.example.com"/>     <allow-access-from domain="www.example.com"/>     <allow-http-request-headers-from domain="*.adobe.com" headers="soapaction"/> </cross-domain-policy> 

adobe's page here

also check security policy...

system.security.allowdomain("yourdomain.com"); 

if still doesn't work, check if use external actionscript (.as) files, these can become cached in flash ide... try adding trace command trace("cacheclear"); external file , republish affected .fla / .swf files.

that trace enough ide notice change.


Comments