gpt4 book ai didi

flash - FLASH CS6 AS3未调用库中的声音

转载 作者:行者123 更新时间:2023-12-02 22:58:31 25 4
gpt4 key购买 nike

任何人都可以看到哪里不工作吗?

我正在尝试从导入的库中获取声音以在单击按钮时播放,

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.

最佳答案

我不认为那是应该从库中播放声音的方式...
var s:Sound = new Sound(new ("dog.mp3"));不正确。

您需要在库中设置声音的链接类名称,然后创建对象(并可以转换为Sound对象),然后可以播放它。

示例:将链接类名称设置为DogSound时,我可以继续:

var sound:Sound = new DogSound();

关于flash - FLASH CS6 AS3未调用库中的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13812319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com