ActionScript 3 AS3声音听众
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3声音听众相关的知识,希望对你有一定的参考价值。
var soundPlaying:Boolean = false;
var _playPosition:int;
//This is your code here hannah
var snd:Sound = new Sound();
snd.load(new URLRequest("http://www.lazytoolbox.co.uk/05BLACKLOCUST.mp3"));
var channel:SoundChannel = new
SoundChannel();
channel = snd.play(0, int.MAX_VALUE);
soundPlaying = true;
////////////////////////
//////////////////////////
// Stuff I Added in //
//////////////////////////
pausebuttonname.addEventListener(MouseEvent.CLICK, onPause);
//Code for Pause
public function onPause(Event:MouseEvent):void {
if(soundPlaying == true) {
_playPosition = channel.position
channel.stop();
soundPlaying = false;
}
else
{
channel = sound.play(_playPosition);
soundPlaying = true;
}
}
以上是关于ActionScript 3 AS3声音听众的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 as3 flv声音
ActionScript 3 As3声音切换
ActionScript 3 AS3静音所有声音
ActionScript 3 AS3停止播放的所有声音
ActionScript 3 修复AS3中的循环声音暂停问题
使用 ActionScript 3 从 Air 中的麦克风查找活动时,如何忽略应用程序播放的声音?