Friday 9 March 2012

Flex, Image component cannot load the picture

Problem
adobe flex AS3.0, error, Flash player v11.
problem, the Image component cannot load the picture file (jpg in precise), the swf is loaded, can load data from php but cannot load images
very rare problem, found on firefox on mac while on the same machine the safari was working without any problem at all!!!

Solution
You must create the crossdomain.xml in the root directory of your site, defining the domain where that flash belongs.

Syntax of crossdomain.xml

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy
  SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">

  <cross-domain-policy>
    <allow-access-from domain="www.mycompany.com" />
    <allow-access-from domain="mycompany.com" />

  </cross-domain-policy>