0

有大神帮忙解决一下这个问题!!!将不胜感激

实际上,我通过名为 config.xml 的配置文件加载了 Flash 音乐播放器

Flash 播放器动作脚本示例

**myUltimateMp3Player.loadConfig("config.xml");**

import flash.external.ExternalInterface; 
stop();
// ExternalInterface receive
if (ExternalInterface.available) { 
   ExternalInterface.addCallback("sendTextFromHtml", null, function(val:String):Void {    
   myUltimateMp3Player.loadConfig(val); }); 
}

我尝试使用 Swf 对象动态嵌入 Flash,因此当从 html 列表处理单击事件时,应在 Flash 播放器上加载相应的 config.xml。

示例 HTML 代码:

$( document ).on( "click", "#Musiclist li", function() {    
    var c = "youtube-playlist";
    $("#media-" + c).remove();
    createMedia(c);
    var id=this.id;
    var idxml=id+".xml";
    var swfPanel="media-" + c;
    var flashvars = {};
    var params = {};
    params.swliveconnect = "true";
    params.allowfullscreen = "true";
    params.allowscriptaccess = "always";
    var attributes = {};
    attributes.id = "flashobj";
    attributes.name = "flashobj";
    swfobject.embedSWF("source.swf", "flashcontent", "100%", "100%", "9.0.0", "swf/expressInstall.swf", flashvars, params, attributes,callbackFn);
});

回调函数

//This function is invoked by SWFObject once the <object> has been created
var callbackFn = function (e){
    //Only execute if SWFObject embed was successful
    if(!e.success || !e.ref){ return false; }
    swfLoadEvent(function(){
       var obj=e.ref;
       obj.sendTextFromHtml("config.xml");
       alert("The SWF has finished loading!");
    });
};

保持 SWF 的 PercentLoaded 值的计时器并等待它达到“100”的函数

function swfLoadEvent(fn){
  //Ensure fn is a valid function
  if(typeof fn !== "function"){ return false; }

    //This timeout ensures we don't try to access PercentLoaded too soon
    var initialTimeout = setTimeout(function (){
    //Ensure Flash Player's PercentLoaded method is available and returns a value
    if(typeof e.ref.PercentLoaded !== "undefined" && e.ref.PercentLoaded()){
        //Set up a timer to periodically check value of PercentLoaded
        var loadCheckInterval = setInterval(function (){
            //Once value == 100 (fully loaded) we can do whatever we want
            if(e.ref.PercentLoaded() === 100){
                //Execute function
                fn();
                //Clear timer
                clearInterval(loadCheckInterval);
            }
        }, 1500);
    }
}, 200);}

所以我无法弄清楚我做错了什么,

得到的错误是,

未捕获的 ReferenceError:未定义 e

如果我没有使用 swfLoadEvent 计时器,

得到的错误是,

未捕获的类型错误:对象 # 没有方法 'sendTextFromHtml'

4

1 回答 1

0

e不是全局变量。尝试修改您的swfLoadEvent函数以将 swf 的引用作为参数传递:

function swfLoadEvent(swf, fn){
    swf.sendTextFromHtml("config.xml");
    ...
}

然后被调用为

swfLoadEvent(e.ref, function(){
    ...
});
于 2013-11-07T16:31:45.960 回答