I was having this problem, but the fix (seems to be easy). Originally, I was coding the /items for sound like this:
<sound targetA>
/1 = "sound1.wav"
/2 = "sound2.wav"
/3 = "sound3.wav"
</sound>
They have to be coded this way:
<sound targetA>
/items = ("sound1.wav", "sound2.wav", sound3.wav")
</sound>
That fixed my problems.
Andrew