当我按下按钮时,我试图让时间线上的声音停止并播放。该时间线上还有一个动画应该停止并播放。我无法获得我用来工作的代码。我收到错误
Del1,层“动作”,第 1 帧,第 16 行 1061:调用可能未定义的方法通过静态类型 flash.media:SoundChannel 的引用播放。
Del1,图层“动作”,第 1 帧,第 10 行 1120:访问未定义的属性烟花。
我是新手,我不知道如何修复错误并让按钮工作。
这是整个代码
import flash.events.MouseEvent;
import flash.media.Sound;
import flash.media.SoundChannel;
PlayButton.addEventListener(MouseEvent.CLICK, playbutton);
NextButton.addEventListener(MouseEvent.CLICK, nextbutton);
StopButton.addEventListener(MouseEvent.CLICK, stopbutton);
var mySound:Sound = new fireworks.wav();
var myChannel:SoundChannel = new SoundChannel();
myChannel = mySound.play();
function playbutton(event:MouseEvent):void
{
myChannel.play();
play();
}
function stopbutton(event:MouseEvent):void
{
stop();
myChannel.stop();
}
function nextbutton(event:MouseEvent):void
{
gotoAndPlay(1, "Del2");
}