pxt-calliope/docs/reference/music/stop-all-sounds.md
Juri Wolf 5f7a8e5301
Updates for V4 (#197)
* 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
2022-08-10 09:36:19 -07:00

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()

See also #seealso

play melody, play, play tone