var s0 = new Sound(this.createEmptyMovieClip("库里的声音", 0)); //0就相当于深度0
var s1 = new Sound(this.createEmptyMovieClip("库里的声音", 1)); //1就相当于深度1
这样声音就互不影响了,不知道是不是你这种情况。
_root.a:new Sound();
_root.a.attachSound("某某");
播放按钮上:
on(release){_root.a.start();} 不错,开始播放...
停止按钮上:
on(release){_root.a.stop();} 这个声音停了,别的声音都停了...