问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

怎么用FLASH制作

发布网友 发布时间:2022-05-18 18:34

我来回答

3个回答

热心网友 时间:2023-10-23 12:23

<html>
<head>
<title></title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<script>
if(typeof sas=="undefined")var sas=new Object();
if(typeof sas.ued=="undefined")sas.ued=new Object();
if(typeof sas.ued.util=="undefined")sas.ued.util=new Object();
if(typeof sas.ued.FlashObjectUtil=="undefined")sas.ued.FlashObjectUtil=new Object();
sas.ued.FlashObject=function(swf,id,w,h,ver,c,useExpressInstall,quality,xiRedirectUrl,redirectUrl,detectKey)
{
if(!document.createElement||!document.getElementById)return;this.DETECT_KEY=detectKey?detectKey:'detectflash';
this.skipDetect=sas.ued.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();this.variables=new Object();
this.attributes=new Array();this.useExpressInstall=useExpressInstall;
if(swf)this.setAttribute('swf',swf);
if(id)this.setAttribute('id',id);
if(w)this.setAttribute('width',w);
if(h)this.setAttribute('height',h);
if(ver)this.setAttribute('version',new sas.ued.PlayerVersion(ver.toString().split(".")));
this.installedVer=sas.ued.FlashObjectUtil.getPlayerVersion(this.getAttribute('version'),useExpressInstall);
if(c)this.addParam('bgcolor',c);
var q=quality?quality:'high';
this.addParam('quality',q);
var xir=(xiRedirectUrl)?xiRedirectUrl:window.location;this.setAttribute('xiRedirectUrl',xir);
this.setAttribute('redirectUrl','');
if(redirectUrl)this.setAttribute('redirectUrl',redirectUrl)};
sas.ued.FlashObject.prototype={setAttribute:function(name,value){this.attributes[name]=value},getAttribute:function(name){return this.attributes[name]},addParam:function(name,value){this.params[name]=value},getParams:function(){return this.params},addVariable:function(name,value){this.variables[name]=value},getVariable:function(name){return this.variables[name]},getVariables:function(){return this.variables},createParamTag:function(n,v){var p=document.createElement('param');p.setAttribute('name',n);p.setAttribute('value',v);return p},getVariablePairs:function(){var variablePairs=new Array();var key;var variables=this.getVariables();for(key in variables){variablePairs.push(key+"="+variables[key])}return variablePairs},getFlashHTML:function(){var flashNode="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall"))this.addVariable("MMplayerType","PlugIn");flashNode='<embed type="application/x-shockwave-flash" src="'+this.getAttribute('swf')+'" width="'+this.getAttribute('width')+'" height="'+this.getAttribute('height')+'"';flashNode+=' id="'+this.getAttribute('id')+'" name="'+this.getAttribute('id')+'" ';var params=this.getParams();for(var key in params){flashNode+=[key]+'="'+params[key]+'" '}var pairs=this.getVariablePairs().join("&");if(pairs.length>0){flashNode+='flashvars="'+pairs+'"'}flashNode+='/>'}else{if(this.getAttribute("doExpressInstall"))this.addVariable("MMplayerType","ActiveX");flashNode='<object id="'+this.getAttribute('id')+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+this.getAttribute('width')+'" height="'+this.getAttribute('height')+'">';flashNode+='<param name="movie" value="'+this.getAttribute('swf')+'" />';var params=this.getParams();for(var key in params){flashNode+='<param name="'+key+'" value="'+params[key]+'" />'}var pairs=this.getVariablePairs().join("&");if(pairs.length>0){flashNode+='<param name="flashvars" value="'+pairs+'" />'}flashNode+="</object>"}return flashNode},write:function(elementId){if(this.useExpressInstall){var expressInstallReqVer=new sas.ued.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(expressInstallReqVer)&&!this.installedVer.versionIsValid(this.getAttribute('version'))){this.setAttribute('doExpressInstall',true);this.addVariable("MMredirectURL",escape(this.getAttribute('xiRedirectUrl')));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title)}}else{this.setAttribute('doExpressInstall',false)}if(this.skipDetect||this.getAttribute('doExpressInstall')||this.installedVer.versionIsValid(this.getAttribute('version'))){var n=(typeof elementId=='string')?document.getElementById(elementId):elementId;n.innerHTML=this.getFlashHTML()}else{if(this.getAttribute('redirectUrl')!=""){document.location.replace(this.getAttribute('redirectUrl'))}}}};sas.ued.FlashObjectUtil.getPlayerVersion=function(reqVer,xiInstall){var PlayerVersion=new sas.ued.PlayerVersion(0,0,0);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){PlayerVersion=new sas.ued.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."))}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");for(var i=3;axo!=null;i++){axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);PlayerVersion=new sas.ued.PlayerVersion([i,0,0])}}catch(e){}if(reqVer&&PlayerVersion.major>reqVer.major)return PlayerVersion;if(!reqVer||((reqVer.minor!=0||reqVer.rev!=0)&&PlayerVersion.major==reqVer.major)||PlayerVersion.major!=6||xiInstall){try{PlayerVersion=new sas.ued.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","))}catch(e){}}}return PlayerVersion};sas.ued.PlayerVersion=function(arrVersion){this.major=parseInt(arrVersion[0])||0;this.minor=parseInt(arrVersion[1])||0;this.rev=parseInt(arrVersion[2])||0};sas.ued.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major)return false;if(this.major>fv.major)return true;if(this.minor<fv.minor)return false;if(this.minor>fv.minor)return true;if(this.rev<fv.rev)return false;return true};sas.ued.util={getRequestParameter:function(param){var q=document.location.search||document.location.href.hash;if(q){var startIndex=q.indexOf(param+"=");var endIndex=(q.indexOf("&",startIndex)>-1)?q.indexOf("&",startIndex):q.length;if(q.length>1&&startIndex>-1){return q.substring(q.indexOf("=",startIndex)+1,endIndex)}}return""}};if(Array.prototype.push==null){Array.prototype.push=function(item){this[this.length]=item;return this.length}}var getQueryParamValue=sas.ued.util.getRequestParameter;var sohuFlash=sas.ued.FlashObject;
function Cookie(document,name,hours,path,domain,secure){this.$document=document;this.$name=name;this.$expiration=hours?new Date((new Date()).getTime()+hours*3600000):null;this.$path=path?path:null;this.$domain=domain?domain:null;this.$secure=secure;};Cookie.prototype.store=function (){var cookieval="";for(var prop in this){if((prop.charAt(0)=='$')||((typeof this[prop])=='function')) continue;if(cookieval!="") cookieval+='&';cookieval+=prop+':'+escape(this[prop]);}var cookie=this.$name+'='+cookieval;if(this.$expiration)cookie+='; expires='+this.$expiration.toGMTString();if(this.$path) cookie+='; path='+this.$path;if(this.$domain) cookie+='; domain='+this.$domain;if(this.$secure) cookie+='; secure';this.$document.cookie=cookie;};Cookie.prototype.load=function(){var allcookies=this.$document.cookie;if(allcookies=="") return false;var start=allcookies.indexOf(this.$name+'=');if(start==-1) return false;start+=this.$name.length+1;var end=allcookies.indexOf(';',start);if(end==-1) end=allcookies.length;var cookieval=allcookies.substring(start,end);var a=cookieval.split('&');for(var i=0; i<a.length; i++) a[i]=a[i].split(':');for(var i=0; i<a.length; i++) this[a[i][0]]=unescape(a[i][1]);return true;};Cookie.prototype.remove = function(){var cookie;cookie = this.$name + '=';if (this.$path) cookie += '; path=' + this.$path;if (this.$domain) cookie += '; domain=' + this.$domain;cookie += '; expires=Fri, 02-Jan-1970 00:00:00 GMT';this.$document.cookie = cookie;};
</script>
</head>
<body>
<!--把下面代码加到<body>与</body>之间-->
<div class="focusFlash">
<div id="sasFlashFocus27"></div>
<script type="text/javascript">
//<![CDATA[
txt="<a image='http://www.zzsky.cn/effect/files/huandeng1.jpg' info='该处是图片的标题' url='http://www.zzsky.cn' /><a image='http://www.zzsky.cn/effect/files/huandeng2.jpg' info='该处是图片的标题' url='http://www.zzsky.cn' /><a image='http://www.zzsky.cn/effect/files/huandeng3.jpg' info='该处是图片的标题' url='http://www.jscode.cn' /><a image='http://www.zzsky.cn/effect/files/huandeng4.jpg' info='该处是图片的标题' url='http://www.zzsky.cn' />"
var sohuFlash2 = new sohuFlash("http://www.zzsky.cn/effect/files/flaplus.swf", "27", 520, 205, "7");
sohuFlash2.addParam("quality", "high");
sohuFlash2.addParam("wmode", "opaque");
sohuFlash2.addVariable("txt",txt);
sohuFlash2.write("sasFlashFocus27");
//]]>
</script>
</div>
</body>
</html>

可以实现你要的效果的

热心网友 时间:2023-10-23 12:24

右边的是按扭,你在按扭里加入代码就可以了,
代码:on(rollOver){gotoAndPlay(1);}
意思是,当SHU标放到按扭上的时候,播放指定帧

热心网友 时间:2023-10-23 12:24

http://www.like-flash.com/Tutorial/topic/text/8FCFF4BC83E9D6B6.html

去看看
有添加 按扭
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
霍香烧烤要用什么调料? 重庆红油抄手的口感特点有哪些? dock其他系统 Ubuntu 20.04 桌面美化 Cairo Dock简介 我是四川省文科生,高一本线3分,报四川农业大学有戏不? 内存卡在电脑上格式化以后为什么车载影音导航扫描不到音乐文件夹了 别克凯越的原装导航SD卡格式化了怎么处理 起亚智跑2.4顶配原装车载导航里面的SD卡被我不小心格式化了,导致车载... SHE什么时候出道的,她们一共发了多少张专集 假设一个算术表达式中可以包含三种括号:圆括号“(”和“)”、方括号“[”和“]”和花括号“{”和“}”, MATLAB代码求修改 水浒q传手游召唤兽怎么才能进阶 js怎样规定输出位数 java可以实现两个数的加·减·乘·除·运算!!!用类的方法做 别人欠钱只还一部分给我,还有一部分以后还,这种情况怎样打收条? 二进制、八进制、十进制、十六进制如何互相转换?谁有教程啊 51单片机控制28byj-48步进电机c语言程序,只振动不转 您好能否共享一下美女公寓合租万岁含vip的txt全文,邮箱是zzhuan100502@163.com。感激不尽! 材质SUS后面数字的意思,与磁性的强弱有什么关系? sus606是什么材质? 世界上伟大的发明有什么?发明它们的人是谁? 中译日 求助 谢谢大神~\(≧▽≦)/~啦啦啦 石灯笼的介绍 走在街上总要被人回头看...为什么啊!!! 法式石斛和红灯笼石斛有什么区别 中国银行卡怎么激活啊 河北省邯郸市结婚彩礼是多少? 哪个人知道关于德国人爱花的资料?急~~~~!答出来的给高分!~~~ 我想在邯郸开花店 初学数据结构,求助实验C语言程序,请附带尽量详细说明,十分感激! 求:李ruihuan《学哲学用哲学》电子版,不要PDF,谢谢发过来,zz-rong@163.com,万分感激。 毛主席的口头禅是什么? 为什么美国一直不对俄罗斯往死里制裁? 减肥的话运动走路可以吗? 60岁的年纪运动走多少步最好? 电视剧《我的朋友陈白露》海棠和陈白露什么关系 求一古代言情小说 男主是皇子 女主是一个贪官的大女儿很聪明求名字? 快走有什么好处?什么时间效果最佳? - 信息提示 多运动走走比有些好,还是多躺床上比 大贪官和珅结局凄惨,为什么乾隆要将自己宠爱的女儿嫁给和珅儿子? 一般农业厅厅长的女儿嫁的都是什么人? 为什么阿三吧还在,棒子吧被禁,这不是歧视吗 和珅家被抄后,子女去了哪里? 和珅的一对儿女在和珅被处死以后,得到了怎样的对待? 乾隆皇帝明知道和珅贪污,为何还要把最疼爱的女儿嫁给和珅的儿子呢? 海瑞勤政爱民,是难得的好官,为什么他要饿死自己的亲生女儿? 以往的C罗踩单车之后就传球,那么踩单车的目的是什么? 和珅有多受宠,乾隆加官进爵还不够,还要送女儿?