扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
<%@ Webservice Language="C#" class="mp3Service" %> using System; using System.Collections; using System.Web.Services; using System.IO; public class mp3Service : System.Web.Services.WebService { public mp3Service() { } [WebMethod] public ArrayList GetMp3() { ArrayList mp3List =new ArrayList(); string mp3path = Server.MapPath("mp3"); try { DirectoryInfo di = new DirectoryInfo(mp3path); FileInfo[] fi = di.GetFiles(); foreach (FileInfo fiTemp in fi) { if(fiTemp.Extension.ToLower() == ".mp3"||fiTemp.Extension.ToLower() == ".wma") { mp3List.Add(fiTemp.Name); } } } catch (Exception e) { Console.WriteLine("The process failed: {0}", e.ToString()); } return mp3List; } } |
on (click) { // Trigger Data Source Behavior // Macromedia 2003 this._parent.mp3serivice.trigger(); } |
on (change) { //Load Streaming mp3 behavior if(_global.Behaviors == null)_global.Behaviors = {}; if(_global.Behaviors.Sound == null)_global.Behaviors.Sound = {}; if(typeof this.createEmptyMovieClip == ’undefined’){ this._parent.createEmptyMovieClip(’BS_mp3’,new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) ); _global.Behaviors.Sound.mp3 = new Sound(this._parent.BS_mp3); } else { this.createEmptyMovieClip(’_mp3_’,new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) ); _global.Behaviors.Sound.mp3 = new Sound(this.BS_mp3); } _global.Behaviors.Sound.mp3.loadSound("http://onlytiancai/bak/flashmp3/mp3/"+this.selectedItem,true); } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者