是否可以从非安全页面调用安全 Flash SWF 函数?

Is it possible to call secure flash SWF function from non secure page?

我有一个非安全 (http) 页面,它正在加载安全 (https) SWF 和安全 (https) JS。当我尝试从 JS 调用 Flash SWF 函数时,它根本没有被调用。

this.thisMovie(this.id).addButton(controlName);

我在所有服务器中正确定义了跨域策略文件,并且 Flash 为 Security.allowDomain("*") 添加了代码。 allowScriptAccess 也设置为 always。当页面安全 (https) 或一切不安全时,调用工作正常。

我想知道这是否可能,如果可以,我需要做什么?

好吧,我只需要 Security.allowInsecureDomain("*");一切正常。谢谢。