Skip to main content Link Menu Expand (external link) Document Search Copy Copied

audio.stop

description

Stops the playback of the audio and goes back to the start of it, making it impossible to resume from the current position later.

syntax

getAudio(ELEMENT_NAME).stop()

example(s)


@newAudio("sentence", "test.mp3")
@    .play()
@,
@newTimer("preview", 750)
@    .start()
@    .wait()
@,
@getAudio("sentence")
@    .stop()
  • Starts playing the file test.mp3 and stops it after 750ms. Calling play later on would not resume playback from there, but start all over from the beginning.