logo
  • 教程列表
  • SO官方文檔
  • 使用聲音
    • 停止播放聲音
    • 無限迴圈聲音
    • 載入並播放外部聲音
  1. StackOverflow 文件
  2. ActionScript 3 教程
  3. 使用聲音
  4. 載入並播放外部聲音

載入並播放外部聲音

Created: November-22, 2018

 placeholderCopyimport flash.net.URLRequest;
import flash.media.Sound;
import flash.events.Event;

var req:URLRequest = new URLRequest("click.mp3"); 
var snd:Sound = new Sound(req);

snd.addEventListener(Event.COMPLETE, function(e: Event)
{
    snd.play();
}
  • 無限迴圈聲音

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明