使用AS3中的空格键从库中播放声音

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AS3中的空格键从库中播放声音相关的知识,希望对你有一定的参考价值。

我一直试图想出一个简单的代码,每次按下空格键时都会从库中播放声音“跳”,但没有运气。我尝试的一切都将我的fla / swf变成闪光灯。

答案
var spacebarDown:Boolean = false;

stage.addEventListener(KeyboardEvent.KEY_DOWN, _keyHandler);
stage.addEventListener(KeyboardEvent.KEY_UP, _keyHandler);

function _keyHandler(e:KeyboardEvent):void
{
    if(e.keyCode == 32)
    {
        switch(e.type)
        {
            case KeyboardEvent.KEY_DOWN:

                if(!spacebarDown)
                {
                    spacebarDown = true;

                    // Play Sound.
                    var sfx:YourSound = new YourSound();
                    sfx.play();
                }

                break;


            case KeyboardEvent.KEY_UP: spacebarDown = false; break;
        }
    }
}

以上是关于使用AS3中的空格键从库中播放声音的主要内容,如果未能解决你的问题,请参考以下文章

AS3 中的循环声音

播放随机声音而不重复

循环声音闪光as3

如何通过 MediaElement 从库中播放文件?

AS3 加色合成。播放多个生成的声音

FLASH AS3 声音重叠