ActionScript 3 - 没有错误播放声音mp3

时间:2017-08-06 19:55:11

标签: actionscript-3 flash

帮助我,我使用的是Adobe Flash CS3 Professional。

ctrl+enter

当我运行swf或Musik Complete时,输出C:/flash/example.fla C:/flash/example.swf C:/flash/music.mp3 没有播放任何声音,但动画仍在播放。对于动画我只是创建简单的双胞胎运动。

我在这个目录上工作

music.mp3

我也尝试将music.mp3导入到库中。

注意:我从我的朋友那里得到了例子(.swf,.fla,.mp3)。我播放由我的朋友和工作共享的.swf,但是当我尝试自己创造时,却不起作用。所以,我认为var Audio:musik = new musik(); var chan:SoundChannel = new SoundChannel(); // play chan=Audio.play(); // stop chan.stop(); // i am so confuse i run my friend project and work fine (sound and other), if i write from scrap even i write the same code, there is an error, and this the error: // 1046: Type was not found or was not a compile-time constant: musik. // 1180: Call to a possibly undefined method musik. 可以用于Flash。这是我的朋友代码:

cosine_similarity

1 个答案:

答案 0 :(得分:2)

我只是在youtube上观看,我错过了一步。 在库中,打开music.mp3的属性并为其命名。

enter image description here

因此,我们可以使用此var Audio:musik=new musik();来调用该类。 然后,创建声道。 至少,播放和停止使用它的功能:

//play
chan=Audio.play();
// stop
chan.stop();