Createjs在Flash CC中暂停时间线声音

Createjs pause timeline sound in Flash CC

有没有办法控制添加到时间轴图层的声音文件 喜欢用时间线暂停和恢复声音 或者无论如何都可以使用 creatjs

检测浏览器中正在播放什么声音

谢谢

查看导出的库代码。有一个框架脚本将有一个 playSound() 调用。

框架脚本可能看起来像这样:

this.frame_12 = function() {
    playSound("sound_id");
}

您可以存储本次调用的结果,并对其进行控制。

this.frame_12 = function() {
    // Store the result as part of the current object.
    this.mySound = playSound("sound_id");
}

要控制它,您需要知道它所在的位置。如果它在您的主时间线上,它将成为您的 exportRoot 的一部分:

exportRoot.mySound.stop();

我需要更多地了解您的设置才能提供更多帮助。