按键时如何播放声音

时间:2014-04-11 10:45:33

标签: flash audio keypress

我在Flash中使用AS2,我想知道如何从KeyPress Down中获取项目库中的特定声音?我是AS2的新手,所以请你给我最简单的方法

1 个答案:

答案 0 :(得分:1)

首先,您需要为要在库中使用的声音添加ASLinkage。例如" mysound"。然后,您可以执行以下操作:

//code on the button that you would like to use sound on


on(press)
{
    snd = new sound();
    snd.attachSound("mysound");//"mysound" is the AS linkage you gave the sound file in the library.
    snd.start();

}