您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 任意拖动的视频播放器
  所属分类: 其它
  开发工具:
  文件大小: 1mb
  下载次数: 0
  上传时间: 2015-07-08
  提 供 者: qq_20******
 详细说明: 任意拖动的视频播放器 //====================================================== //===============VIDEO SETUP=====视频设置============ //====================================================== //the playlist address _root.playlist == undefined ? playlist="http://yun.365.sh/s/TY2gc2.swf" : playlist=_root.playlist; // stage variables Stage.showMenu = false; Stage.scaleMode = "noScale"; stop(); // video Stream variables var nc:NetConnection = new NetConnection(); nc.connect(null); var ns:NetStream = new NetStream(nc); // buffer video ns.setBufferTime(5); ns.onStatus = function(obj) { if (obj.code == "NetStream.Buffer.Full") { bufferClip._visible = false; } if(obj.code == "NetStream.Buffer.Empty") { bufferClip._visible = true; } }; var myVolume:Number = 0; var current_song:Number = 1; // control variables var scr = _root.main.controlBar.scrubber; var pr = scr.progres; var ld = scr.loader; var cb = _root.main.controlBar; var swidth = scr.back._width-37; //297-37 var pstart = -285; //-261 var dur:Number; // the percentage of the video loaded var lprog:Number = 0; var sign:String = "first"; main.theVideo.attachVideo(ns); // parsing the playlist xml files data_xml = new XML(); data_xml.ignoreWhite = true; data_xml.onLoad = loadData; data_xml.load(playlist); var aPath = new Array(); function loadData(success) { if (success) { // getting all titles and filenames songTitel = new Array(); audioTracks = new Array(); audioTracks.shuffle(); audioTracks = this.firstChild.childNodes; song_total = audioTracks.length; for (var i = 0; i> is preparing . "; lprog = ns.bytesLoaded/ns.bytesTotal; main.controlBar.scrubber.loaded._width = lprog*290; pr._x = -285+(swidth*prog); ns.onStatus = function(infoObject:Object) { if(infoObject.code == "NetStream.Play.Start") { sign = "started"; } else if(infoObject.code == "NetStream.Play.Stop") { sign = "closed"; if (autoStart == "random") { current_song = random(song_total)+1; } else { current_song == song_total ? current_song=1 : current_song++; } cb.plabel.play(); } }; if(sign == "started") { main.welcome._visible = false; bot.currentPlay.text = checkDigits(current_song)+". "+songTitel[current_song-1]; main.controlBar.scrubber.perload.text = Math.round(lprog*100)+"%"; hadPlayed.text = Math.floor(ns.time/60)+" m "+Math.round(ns.time%60)+" s "+Math.floor(prog*100)+" %"; timetext.text = Math.floor(dur/60)+" m "+Math.round(dur%60)+" s"; } else if(sign == "closed") { main.controlBar.scrubber.perload.text = "Closed"; hadPlayed.text = "Previous one closed"; main.welcome._visible = true; timetext.text = "none loaded"; } else if(sign == "first") { main.controlBar.scrubber.perload.text = "OK"; timetext.text = "默认的视频";//default Vedio OK hadPlayed.text = "玩家可以"; //Player OK } } function listClick(prm) { delete pausepos; current_song = prm; ns.stop(); playtime(); sign = "select"; } // list scroller bot.listContentMc.list_bg.onEnterFrame = function() { if (this.hitTest(_root._xmouse, _root._ymouse) == true && this._parent.playlist._height>this._height) { ymin = this._y+this._height-this._parent.playlist._height; ymax = this._y+3; conv = (this._ymouse-15)*1.3/this._height; conv>1 ? conv=1 : null; conv<0 ? conv=0 : null; this._parent.playlist.easeY(ymax-conv*(ymax-ymin)); } }; bot.listContentMc.playlist.setMask(bot.listContentMc.list_bg); MovieClip.prototype.easeY = function(t) { this.onEnterFrame = function() { this._y = int(t-(t-this._y)/1.5); if (this._y>t-1 && this._y .95) { ns.seek(0); ns.pause(false); }*/ }; function ff() { if (ns.time/dur<.95) { ns.seek(ns.time+1); } else { clearInterval(ffInt); } } pr.scrubba.onPress = function() { //ns.pause(true); _root.onEnterFrame = scrubba; pr.startDrag(false, -285, pr._y, -25, pr._y); }; pr.scrubba.onRelease = pr.scrubba.onReleaseOutside=function () { _root.onEnterFrame = videoUpdate; //ns.pause(false); pr.stopDrag(); removeTip(); }; function scrubba() { var p = (pr._x-pstart)/swidth; if (p<=lprog) { ns.seek(p*dur); } else { ns.seek(lprog); } main.tooltip.datext.text = Math.floor(p*100)+" % 处理";//processing main.tooltip._x = Math.round(main._xmouse); main.tooltip._y = Math.round(main._ymouse); main.tooltip._visible = true; } main.controlBar.scrubber.back.onRelease = controlBar.scrubber.back.onReleaseOutside=function () { var p = (this._xmouse-37)/swidth; if (p<=lprog) { ns.seek(p*dur); } else { ns.seek(lprog); } }; //====================================================== //==============SOUND CONTROL=======声音控制============= //====================================================== _root.createEmptyMovieClip("vidsound", _root.getNextHighestDepth()); vidsound.attachAudio(ns); var sou:Sound = new Sound(vidsound); sou.setVolume(75); var startxs = main.controlBar.vol._x; main.controlBar.vol._x = startxs+(70*.75); main.controlBar.vol.onPress = function() { this.startDrag(false, startxs+3, this._y, startxs+58, this._y); main.tooltip._x = Math.round(main._xmouse); main.tooltip._y = 554; this.onEnterFrame = voller; }; main.controlBar.vol.onRollOver = function() { showTip("Volume"); }; main.controlBar.vol.onRollOut = function() { removeTip(); }; main.controlBar.vol.onRelease = main.controlBar.vol.onReleaseOutside = function () { this.stopDrag(); removeTip(); delete this.onEnterFrame; }; function voller() { var perc = ((main.controlBar.vol._x-544)/(55)); sou.setVolume(Math.ceil(perc*100)); myVolume = sou.getVolume(); main.tooltip.datext.text = sou.getVolume()+"% Volume"; main.tooltip._x = Math.round(main._xmouse); main.tooltip._y = Math.round(main._ymouse); main.tooltip._visible = true; } //====================================================== //==============TOOL TIPS=======工具提示================== //====================================================== var ti:Number; function showTip(datext) { ti = getTimer(); main.tooltip.datext.text = datext; main.tooltip.onEnterFrame = function() { var tempti = getTimer(); if (tempti-ti>500) { this._x = Math.round(main._xmouse); this._y = Math.round(main._ymouse); main.tooltip._visible = true; } }; } function removeTip() { main.tooltip._visible = false; delete main.tooltip.onEnterFrame; } main.tooltip._visible = false; main.mute.onRelease = function() { if (sou.getVolume() == 0) { sou.setVolume(myVolume); cb.vol._x = 544+63*myVolume/100; } else { myVolume = sou.getVolume(); sou.setVolume(0); cb.vol._x = 544; } main.bugle.play(); }; main.mute.onRollOver = function() { showTip("切换静音");//Toggle Mute }; main.mute.onRollOut = function() { removeTip(); }; //dragging main.window.onPress = function() { this._parent.startDrag(); this._parent.swapDepths(5); bot.swapDepths(4); }; bot.listTitleBar.onPress = bot.listContentMc.listContent.onPress =function() { bot.startDrag(); bot.swapDepths(5); main.swapDepths(4); }; main.window.onRelease = main.playerTitleBar.onReleaseOutside = function() { this._parent.stopDrag(); }; bot.listTitleBar.onRelease = bot.listTitleBar.onReleaseOutside = bot.listContentMc.listContent.onRelease = bot.listContentMc.listContent.onReleaseOutside = function() { bot.stopDrag(); }; // hide or show the playList main.plBut.onRelease = function() { (bot._visible == true)?bot._visible = false:bot._visible = true; }; main.plBut.onRollOver = function() { showTip("播放列表");//PlayList }; main.plBut.onRollOut = function() { removeTip(); }; bot.close.onRelease = function() { bot._visible = false; } bot.small.onRelease = function() { bot.smallContent.play(); (bot.listContentMc._visible == true)?bot.listContentMc._visible = false:bot.listContentMc._visible = true; } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: 视频播放器
 输入关键字,在本站1000多万海量源码库中尽情搜索: