this lingo program will allow several sounds to play in the background simultaneously. when a user rolls over a mouse, the sound will come up when a user rolls out, the sound will stop it uses a frame script to keep all the sounds going and scripts on several buttons to control which sound is on ------------------------ put in frame script keeps everything going on exitFrame me if soundbusy(1)= 0 then sound(1).play(member"j") end if if soundbusy(2)= 0 then sound(2).play(member"k") end if end -------------------------------- put on each of 2 buttons controls which sounds can be heard uses volume=0 to turn its sound off although it keeps running on mouseEnter sound(2).volume = 100 end on mouseleave sound(2).volume = 0 end on mouseEnter sound(1).volume = 100 end on mouseLeave sound(1).volume = 0 end