·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3加载外部mp3制作mp3音乐播放器源代码实例

时间:2013-03-16 15:42CuPlayer.com
[AS3]as3加载外部mp3制作mp3音乐播放器源代码实例

[AS3]as3加载外部mp3制作mp3音乐播放器源代码实例

  1. var SoundState:Boolean; 
  2.  
  3. var sndChannel:SoundChannel; 
  4. var snd:Sound = new Sound(); 
  5. snd.addEventListener(ProgressEvent.PROGRESS, ProgressHandler); 
  6. snd.addEventListener(Event.COMPLETE, CompleteHandler); 
  7. snd.load(new URLRequest("showroom.mp3")); 
  8.  
  9. var outputText:TextField=new TextField(); 
  10. outputText.width = 500
  11. outputText.height = 20
  12. addChild(outputText); 
  13. //cuplayer.com提示,加载进度 
  14. function ProgressHandler(e:ProgressEvent):void { 
  15.     outputText.text = "Loading: " + Math.round(100 * e.bytesLoaded / e.bytesTotal); 
  16.     trace("Loading: " + Math.round(100 * e.bytesLoaded / e.bytesTotal)); 
  17. function CompleteHandler(e:Event):void { 
  18.     outputText.text = "Sound loaded - click the stage to play and stop"
  19.     snd.removeEventListener(ProgressEvent.PROGRESS, ProgressHandler); 
  20.     snd.removeEventListener(Event.COMPLETE, CompleteHandler); 
  21.     stage.addEventListener(MouseEvent.CLICK, clickHandler); 
  22. //cuplayer.com提示,暂停、播放动作 
  23. function clickHandler(e:Event):void { 
  24.     SoundState=!SoundState; 
  25.     trace(SoundState); 
  26.     if (SoundState) { 
  27.         outputText.text ="PLAY"
  28.         sndsndChannel=snd.play(pausePosition); 
  29.     } else { 
  30.         var pausePosition:int = sndChannel.position; 
  31.         outputText.text ="PAUSE"
  32.         sndsndChannel=snd.play(pausePosition); 
  33.     } 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器