1

IE8和IE7都出现这个问题。我有一个用 flex 编译的小 swf。它基本上只是围绕音频流功能的包装。所有控件等都在带有 javascript 的 html 中。我使用 swfobject 的“静态”方法加载 swf。这在 Firefox 和 Chrome 中效果很好。在 IE 中,swf 加载正确,但是一旦我尝试使用它流式传输任何音频,就会出现错误。

编辑:我已经减少了很多代码来尝试找到问题。您可以在此处看到正在运行的新版本。这是我简化版本的错误、html 和 flex 文件:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at isolated/playStream()[/home/defrex/code/bd/trunk/ackbar/media/flex/isolated.mxml:19]
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at flash.external::ExternalInterface$/_callIn()
    at <anonymous>()

的HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>fuie</title>
        <script type="text/javascript" src="swfobject.js"></script>
        <script>
            var player;
            swfobject.registerObject("_mediaplayer", "9.0.0", undefined, function(e){
                if (e.success)
                    player = e.ref;
                else
                    console.log('Flash not loaded');
            });
        </script>
    </head>
    <body>
        <a href="#" onclick="player.play_fuie('celebration.mp3');return false;">play track</a>
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1" height="1" id="_mediaplayer">
            <param name="movie" value="isolated.swf" />
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="isolated.swf" width="1" height="1">
            </object>
            <!--<![endif]-->
        </object>
    </body>
</html>

和弹性:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
        import flash.external.ExternalInterface;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.net.URLRequest;

        public function init():void {
            ExternalInterface.addCallback("play_fuie", playStream);
            ExternalInterface.call("console.log('flash loaded')");
        }

        public function playStream(stream:String):void {
            var url:URLRequest = new URLRequest(stream);
            var audio:Sound = new Sound();
            audio.load(url);
            var chan:SoundChannel = audio.play();
            chan.soundTransform.volume = 0.5;
        }
    </mx:Script>
</mx:Application>
4

2 回答 2

1

如果调试了 3 天令人沮丧,故事的寓意是:软件盗版很糟糕。事实证明,为在 VirtualBox 中进行 IE 测试而在开发团队中传递的粗略“XP Pirate Edition”存在某种导致问题的错误(或者可能是恶意软件)。当我们在安装在同一个 VM 中的 Chrome 中尝试测试时,它出现了同样的错误(而 Linux 下的 Chromium 运行良好),我们意识到操作系统可能有问题。果然,当我们得到一个合法版本的 IE 时,一切都运行良好。

业力可能是残酷的。

于 2009-12-14T17:32:05.947 回答
0

很难在您的代码中看到流是如何传递给 flash 的,如果它来自您的 flash 参数请记住,ie 和 firefox 具有不同的语法来将参数传递给 flash 对象

http://www.cflex.net/showFileDetails.cfm?ChannelID=1&Object=File&ObjectID=285

于 2009-12-11T14:42:05.220 回答