在嵌入在html中的swf中访问as3函数

时间:2014-02-19 08:12:14

标签: javascript html embed flash

大家早上好。这是我尝试在html中嵌入swf的代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript" src="./flash/swfobject.js"></script>
        <script type="text/javascript">
            var flashvars = {};
            var params = {};
            var attributes = {};
            attributes.id = "ime_js";
            swfobject.embedSWF("flash/IMEJS.swf", "ime_js", "100", "100", "9.0.0", "flash/playerProductInstall.swf", flashvars, params, attributes);
        </script>

    </head>
    <body>
        <div id="ime_js">
            <a href="http://www.adobe.com/go/getflashplayer">
                <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
            </a>
        </div>
    </body>
</html>

现在我想访问该swf对象中的函数。

swfobject.getObjectById("ime_js").init();

然后Chrome控制台附带此消息: TypeError:Object#没有方法'init'。

Swf对象包含该函数,它已经被使用并且它可以工作。所以瑞士法郎不是问题。只是我尝试嵌入它并调用其功能的部分。 请帮助:)

先谢谢你。

0 个答案:

没有答案