stopSound: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{stub|Needs examples and any info specific to streams/clips added.}}
{{MacroFunction
{{MacroFunction
|name=stopSound
|name=stopSound
Line 6: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
stopSound()
stopSound()
stopSound(uri)
stopSound(uri)
stopSound(uri, remove)
stopSound(uri, remove)
stopSound(uri, remove, fadeout)
stopSound(uri, remove, fadeout)
</source>
</syntaxhighlight>


'''Parameter'''
'''Parameter'''

Latest revision as of 17:39, 14 March 2023

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
 This article needs: Needs examples and any info specific to streams/clips added.

stopSound() Function

Introduced in version 1.5.5
Stop an audio stream or clip currently playing.

Usage

stopSound()
stopSound(uri)
stopSound(uri, remove)
stopSound(uri, remove, fadeout)

Parameter

  • uri - The uri/url of the stream or clip to stop. If set to "*", all audio stream or clips are stopped. Defaults to "*".
  • remove - If set to 1, the audio file is removed from memory. Defaults to 1.
  • fadeout - Optional fadeout (in seconds) before stopping the stream or clip. If set to 0, stop as soon as possible. Defaults to 0.


Version Changes

  • 1.5.7 - Renamed from stopStream to support both streams and clips.