Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with showing swf in different domains: www.mydomain.com works ok, but www.mydomain.com/en/ or www.mydomain.com/pl/ doesn't show swf content only image linked to download flash plugin.

Swf file is a loader which loads couple of swf's. What I already tried:

  1. Adding crossdomain.xml file next to swf,

    < allow-access-from domain="*" / >

  2. Adding crossdomain.xml file in the root directory of website

  3. Adding to the loader document class file:

    Security.allowdomain('*');
    Security.loadPolicyFile('crossdomain.xml');

  4. Adding in the html wrapper:

    < param name="allowScriptAccess" value="sameDomain" />

What else I can do to make it work?

share|improve this question
Are you adding the cross domain to the site which contains the swf your are LOADING? – Neil May 22 '12 at 12:49
This has nothing to do with security domain. have you checked if the path is right to the swf, that swf is reachable, from mydomain.com and maindomain.com/pl`? – Jevgenij Dmitrijev May 22 '12 at 13:15
Neil: no because the site is on Wordpress and I don't know if it supports it.. does it? @Jevgenij: It's not reachable from www.mydomain.com/pl... So all i have to do is duplicate swfs or add a right path in www.mydomain.com/pl index. I'll try that... – bitelz May 23 '12 at 8:33
I had to give full link to swf in object tag and after that add Security.allowDomain in every loaded swf. – bitelz May 24 '12 at 14:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.