1

我正在尝试从 javascript 调用 flash 对象中的操作:

作为:

function testExternalConnection(str:String):Void {
    _root.debug.htmlText = "testExternalConnection ok";
}
ExternalInterface.addCallback("testExternalConnection", this, testExternalConnection);

js:

var movie = getFlashMovie("ap1_mod_hidden")
movie.testExternalConnection();

function getFlashMovie(movieName) {
    var isIE = navigator.appName.indexOf("Microsoft") != -1;
    return (isIE) ? window[movieName] : document[movieName];
}

我正在使用 swfobject 包括我的闪存:

<span id="ap1_mod_hidden"></span>
<script type="text/javascript">
    // Setting up the flash player
    var flashvars = {
        mp3Path: "stop",
        artistName : "",
        trackName : ""
    };
    var params = {
        codebase: 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
        src: '/flash/ap1_mod.swf',
        quality: 'high',
        pluginspage: 'http://www.macromedia.com/go/getflashplayer',
        scale: 'showall',
        devicefont: 'false',
        bgcolor: '#999999',
        name: 'ap1_mod',
        menu: 'true',
        id: 'mod',
        allowFullScreen: 'false',
        allowScriptAccess:'always', //sameDomain
        movie: '/flash/ap1_mod.swf',
    wmode: "transparent",
    allowfullscreen: "true"
    };

    swfobject.embedSWF("/flash/ap1_mod.swf", "ap1_mod_hidden", "300", "300", "9.0.0", false, flashvars, params);
</script>

这里没有什么疯狂的。因此,此代码在所有内容中都可以正常工作,但在 Internet Explorer 中却不行(真是令人惊讶:\)。它正在正确获取电影对象,但无法调用外部接口函数。就是说属性没有定义。

我看过谷歌和 SO 都没有成功......任何帮助将不胜感激!

4

1 回答 1

5

我相信你想使用 id,而不是你添加 swf 的 div,所以:

function getFlashMovie(movieName) {
    return swfobject.getObjectById("mod");
}

因为您将“mod”设置为 id。

于 2009-07-22T15:31:58.797 回答