5f7a8e5301
* update yotta defaults for 16kb devices * refactor deprecated blocks * updates for button events * update button events * update refference * update docs * update docs * update button event blocks * update docs * update block id
845 B
845 B
stop All Sounds
Stop all the sounds that are playing right now and any others waiting to play.
music.stopAllSounds()
If you play sounds or sound effects more than once, the sounds you asked to play later have to wait until the sounds played earlier finish. You can stop the sound that is playing now and all the sounds waiting to play with ||music:stop all sounds||
.
#simnote
~hint
Simulator
||music:stop all sounds||
works on the @boardname@. It might not work in the simulator on every browser.
~
Example #example
Play a tone but stop it right away.
let freq = music.noteFrequency(Note.C);
music.playTone(freq, 1000)
music.stopAllSounds()