新浪中用来显示flash的函数

2019-06-02 23:42:34刘景俊

if(l.flashVarsStr==""){l.flashVarsStr=I+"="+i}else{l.flashVarsStr+="&"+I+"="+i}
l.embedAttrs["FlashVars"]=l.flashVarsStr},getVariable:function(I){var o=this,i=o.flashVarsStr;if(o.escapeIs){I=escape(I)}
var l=new RegExp(I+"=([^&]*)(&?)","i").exec(i);if(o.escapeIs){return unescape(RegExp.$1)}
return RegExp.$1},addParam:function(I,i){this.forSetAttribute(I,i)},getParam:function(){return this.forGetAttribute(name)},write:function(i){var I=this;if(typeof i=="string"){sina.$(i).innerHTML=I.getFlashHtml()}else if(typeof i=="object"){i.innerHTML=I.getFlashHtml()}}}    /**
* @author [sina]zhangping1@
* @version v1.1.3
* Date:2006-9-8 2006-12-15
*/ 
if(typeof(sina)!="object"){
var sina={


sina.$=function(objId){
if(!objId){
throw new Error("sina.$(String objId)参数必须")

if(document.getElementById){
return eval('document.getElementById("'+objId+'")')
} else if(document.layers){
return eval("document.layers['"+objId+"']")
} else{
return eval('document.all.'+objId)


sinaFlash=function(C,v,x,V,c,X,i,O,I,l,o){
var z=this;
if(!document.createElement||!document.getElementById){
return

z.id=v?v:"";
z.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";
z.codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="+(c?c:"7")+",0,0,0";
z.width=x;
z.height=V;
z.movie=C;
z.bgcolor=X?X:null;
z.quality=O?O:"high";
z.src=z.movie;
z.pluginspage="http://www.macromedia.com/go/getflashplayer";
z.type="application/x-shockwave-flash";
z.useExpressInstall=i?i:null;
z.xir=(I)?I:window.location;
z.redirectUrl=l?l:null;
z.detectKey=o?o:null;
z.escapeIs=false;
z.objAttrs={
} ;
z.params={
} ;
z.flashVars=[];
z.flashVarsStr="";
z.embedAttrs={
} ;
z.forSetAttribute("id",z.id);
z.objAttrs["classid"]=z.classid;
z.forSetAttribute("codebase",z.codebase);
z.forSetAttribute("width",z.width);
z.forSetAttribute("height",z.height);
z.forSetAttribute("movie",z.movie);
z.forSetAttribute("quality",z.quality);
z.forSetAttribute("pluginspage",z.pluginspage);
z.forSetAttribute("type",z.type);
z.forSetAttribute("bgcolor",z.bgcolor)

sinaFlash.prototype={
getFlashHtml:function(){
var I=this,i='<object ';
for(var l in I.objAttrs){
i+=l+'="'+I.objAttrs[l]+'" '

i+='>';
for(var l in I.params){
i+='<param name="'+l+'" value="'+I.params[l]+'" /> '

if(I.flashVarsStr!=""){
i+='<param name="FlashVars" value="'+I.flashVarsStr+'" /> '

i+='<embed ';
for(var l in I.embedAttrs){