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