Sound Object

I have various sounds playing at the same time. I call them like this:

var bgMusic:Sound = new Sound();
bgMusic.setVolume(90);
bgMusic.attachSound(“Xmas2”);
bgMusic.start(0, 999);

I’d like to stop one of them, but not all, and when I put on a button (bgMusic.stop()) all sounds stop… does anybody know the reason/solution?

Thanks a lot :smirk: