任何人都可以看到哪里不起作用吗?
我正试图从导入的图书馆获取声音,点击按钮点击
button_1.addEventListener(MouseEvent.CLICK, fl_ClickToPlayStopSound_2);
var fl_SC_2:SoundChannel;
var fl_ToPlay_2:Boolean = true;
function fl_ClickToPlayStopSound_2(evt:MouseEvent):void
{
if(fl_ToPlay_2)
{
var s:Sound = new Sound(new ("dog.mp3"));
fl_SC_2 = s.play();
}
else
{
fl_SC_2.stop();
}
fl_ToPlay_2 = !fl_ToPlay_2;
}
我收到此错误,
Scene 1, Layer 'Actions', Frame 1, Line 21 1120: Access of undefined property dog.
答案 0 :(得分:2)
我不认为你应该如何播放图书馆的声音......
var s:Sound = new Sound(new ("dog.mp3"));
不正确。
您需要在库中设置声音的链接类名,然后创建对象(并可以转换为Sound
对象),然后您可以播放它。
示例:当我将链接类名称设置为DogSound
时,我可以继续:
var sound:Sound = new DogSound();