The known issues are to do with ensuring the host page and swf file have the
correct security sandbox settings to enable communications. Flashvars should
always be allowed to the passed into the swf, as this is done at object
construction time.
On the host page side of things you will need to ensure that
allowscriptaccess=always
since your swfs are coming from a different domain than the page. On the swf
side of things you will need to ensure that you have called allowDomain.
Below are the most open settings you can set (lock down to your domains
after you have determined it is working)
AS2 - System.security.allowDomain("*");
AS3 - flash.system.Security.allowDomain("*");
If you are loading any data (images, xml etc) from your swf, then you will
also need a crossdomain policy file on the domain you are loading the
content from.
Everyone else can post code to the list, so I am unsure why you are not able
to.... Copy and paste your code into something like notepad to ensure it is
plain text, and paste into your email.
Aran
On Wed, Mar 31, 2010 at 8:39 AM, inchworm <[email protected]> wrote:
> I'm running into a problem with loading swfs on my page from a CDN. In
> all other browsers but IE7 everything works fine, however in IE7 my
> shell.swf does not receive any flashvars, nor can it run js functions
> on the page. If I switch the swfs to running off of the same domain
> the issue is resolved but the client has insisted that the swfs be
> hosted on their content distribution network ( which I refer to with
> my_CDN_url ).
>
> Is there any known issue with using swfobject, external swfs, and
> IE7???
>
> Any help would be IMMENSELY appreciated. Been stuck on this for over a
> week now.
>
> *edit* it won't let me post the embed code I'm using :(
>
> --
> You received this message because you are subscribed to the Google Groups
> "SWFObject" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<swfobject%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/swfobject?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups
"SWFObject" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/swfobject?hl=en.