0

我正在尝试使用 Javascript 来调用 flash 函数。当 html 文件和 swf 在同一个域上时,我让它工作,但当它在另一个域上时它停止工作。

这是我在服务器上使用 SWF 的跨域文件:

<?xml version="1.0"?>
   <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
   <cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
   <allow-access-from domain="*" />
   <allow-http-request-headers-from domain="*" headers="*"/>
   </cross-domain-policy>

SWF 之前已加载:

AC_FL_RunContent("src", "http://www.eyespeakpro.com/OneSentenceLogin.swf",
    "width", "100%",
    "height", "80%",
    "align", "middle",
    "id", "OneSentenceLogin",
    "quality", "high",
    "bgcolor", "#ffffff",
    "name", "OneSentenceLogin",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
);

这是当它是另一台服务器上的 html 页面的一部分时失败的 javascript 代码。SWF 名为 OneSentenceLogin,函数为 callChangeSentIn。

 function callExternalInterface(sentIn) {
    /* Call a function registered as callChangeSentIn in the SWF named myMovie. */
    getMovieName("OneSentenceLogin").callChangeSentIn(sentIn); 

// The following error only happens on the other server:
// Uncaught TypeError: Object #<HTMLEmbedElement> has no method 'callChangeSentIn'

    }
    /* This utility function resolves the string movieName to a Flash object reference based on browser type. */
    function getMovieName(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
    return window[movieName]
    }
    else {
    return document[movieName]
    }
 }

为什么从另一台服务器调用方法 callChangeSentIn 时找不到,即使 swf 仍在加载?

4

2 回答 2

0

这是加载 swf 时所需要的: Security.allowDomain("www.example.com") 在我的情况下,我输入

Security.allowDomain("74.52.88.189");
Security.allowDomain("http://74.52.88.189");
Security.allowDomain("http://74.52.88.189/");

不确定哪一个是特别必要的。

这里也有回答,但不知什么原因没找到。 不同域上的 Javascript 未调用 Flash

于 2012-11-12T02:48:11.377 回答
0

尝试将 allowScriptAccess 设置为 always。

更多信息

于 2012-11-08T00:26:48.460 回答