<div dir="ltr">Hi,<br><br>I am running the following code in Pippy:<br><br>
p=[]<br>
for sound in getSoundList(): #the list of sounds in the default example Sound: getSoundList<br>
p.append(sound)<br>
<br>
for i in range(1,len(p)):<br>
print("Now playing a: " + p[i])<br>
playWave(sound=p[i], loop=True, duration=2)<br>
audioOut()<br>
<br>It works but the sounds are not cleared before sounding the next sound. Does anyone know how to reset the playWave()? Or do I need to reset the audioOut()?<br><br>Thanks in advance<br><br>Omar<br><br></div>