Sound Problem

Hi there,

Basically I’m making an interactive CD presentation. It needs a backing track but I’m having difficulty with it. The buttons within it have attachSound codes added to them, which play spot FX. When rolling out from the button it tells that specific sounf to stop. I added an attachSound at the start of the movie to play the backing music and it was fine, but when you roll over the button it cuts out the music.

This is the code for the button rollover:

on (rollOver) {
_root.shimmerSound.stop();
_root.shimmerSound.attachSound (“flicker”);
_root.shimmerSound.start();

tellTarget (“vegas_slider”) {
gotoAndPlay(2);
}
tellTarget (“fade3”) {
gotoAndPlay(2);
}
}
on (rollOut) {
_root.shimmerSound.stop();
tellTarget (“vegas_slider”) {
gotoAndPlay(7);
}
tellTarget (“fade3”) {
gotoAndPlay(1);
}
}
on (release) {
gotoAndPlay(“vegas”, 1);
}

I don’t know how to get around this, I’ve tried different things but it always cuts out my backing music whenever you roll over a button. Thanks in advance for any help.

Chris