0

我不是 Flash 开发人员。我正在尝试将通信javascript连接到.swf 文件。我发现这里和其他地方最简单的方法是使用ExternalInterface.addCallback(). 我使用了上面的链接以及官方文档作为参考。

我很确定我不会像这样过早地调用 flash 文件中的方法。

这是我的 HTML(我直接从文档中得到):

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="Project" width="1024" height="768" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
    <param name="movie" value="Project.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#869ca7" />
    <param name="allowScriptAccess" value="always" />
    <embed src="Project.swf" quality="high" bgcolor="#869ca7" width="1024" height="768" name="Project" align="middle" play="true" loop="false" quality="high" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed>
</object>

我的Javascript:

function sendToActionScript(value) {        
    GetSWF("Project").updateText(value);
}

function GetSWF(strName) {
    if (window.document[strName] != null)
        if (window.document[strName].length == null)
            return window.document[strName];
        else
            return window.document[strName][4];
    else
        if (document[strName].length == null)
            return document[strName];
        else
            return document[strName][5];
}

相关的 AS:

public function Project_Main() 
{
    commune();
}

public function commune()
{
    if (ExternalInterface.available) {
        ExternalInterface.addCallback("updateText", updateText);
    }
    else
    {
        var displayText:TextTheme = new TextTheme(_ArialBlack, 100, 100, 800, 500, 42);
        addChild(displayText);
        displayText.text = "ERROR:ExternalInterface.NOTavailable";
    }
}

private function updateText(pid:String, playerName:String):void 
{
    var displayText:TextTheme = new TextTheme(_ArialBlack, 100, 100, 800, 500, 42);
    addChild(displayText);
    displayText.text = "PLAYER ID:" + pid + " PLAYER NAME:" + playerName;
}

我在这里读到您无法托管您的文件,C:\因此我将 HTML 从http://localhost.

当我尝试打电话时,sendToActionScript("test");我收到此错误:

Error: Error calling method on NPObject.

这听起来像是一个权限问题,但正如你所见,我有allowScriptAccess=always. 我究竟做错了什么?

4

1 回答 1

1

在JS中有1个参数,

GetSWF("Project").updateText(**value**);

但正如 AS 所说,应该是其中两个

private function updateText(pid:String**, playerName:String**):void 
于 2012-11-21T14:11:57.983 回答