0
我一直在試圖想出一個簡單的代碼,每次按空格鍵時都會從庫中播放聲音「跳」,但沒有運氣。我嘗試的所有東西都將我的fla/swf變成閃光燈。使用AS3中的空格鍵從庫中播放聲音
我一直在試圖想出一個簡單的代碼,每次按空格鍵時都會從庫中播放聲音「跳」,但沒有運氣。我嘗試的所有東西都將我的fla/swf變成閃光燈。使用AS3中的空格鍵從庫中播放聲音
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;
}
}
}