Difference between revisions of "ToggleSoundPause"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 1: Line 1:
<div class="toccolours mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%">
+
<div class="toccolours mw-collapsible mw-collapsed tbl-ds">
<b>Command History</b>
+
<span>Command History</span>
 
<div class="mw-collapsible-content">
 
<div class="mw-collapsible-content">
<div style="background:#ebebeb" width="100%">Available since <span style="color:orange">v3.8</span></div>
+
<div class="alt-bg">Available since v3.8</div>
 
</div></div>
 
</div></div>
  
Line 29: Line 29:
  
  
<b><u>Arguments</u></b>
+
<span class="bold underline">Arguments</span>
  
<b>id</b>: integer (number) <br/>
+
<span class="bold">id</span>: integer (number) <br/>
 
The id for the currently playing audio file! ("sound.id")
 
The id for the currently playing audio file! ("sound.id")
  
  
<b><u>Flags</u></b>
+
<span class="bold underline">Flags</span>
  
 
none
 
none
  
  
<b><u>Return</u></b>
+
<span class="bold underline>Return</span>
  
<b>success</b> <br/>
+
<span class="bold">success</span> <br/>
 
Returns true or false boolean value depending on if the linked sound was successfully paused or resumed!
 
Returns true or false boolean value depending on if the linked sound was successfully paused or resumed!
 
{{i18n|ToggleSoundPause}} <br/>
 
{{i18n|ToggleSoundPause}} <br/>
{| style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%"
+
{| class="tbl-ds"
 
|-
 
|-
|<b>Relevant Pages</b>: [[GetSoundId|getSoundId]] - [[GetSoundProperty|getSoundProperty]] - [[SetSoundProperty|setSoundProperty]] - [[StartSound|startSound]] - [[StopSound|stopSound]]
+
|<span class="bold">Relevant Pages</span>: [[GetSoundId|getSoundId]] - [[GetSoundProperty|getSoundProperty]] - [[SetSoundProperty|setSoundProperty]] - [[StartSound|startSound]] - [[StopSound|stopSound]]
 
|}
 
|}

Revision as of 14:26, 5 April 2013

Command History

Available since v3.8


Allows you to toggle between pause & resume of an active linked sound!


Syntax:

toggleSoundPause(id)


Example 1: basic toggle pause/resume audio file method! (!messy)

toggleSoundPause(getSoundId("sounds/example.ogg"))

Example 2: again using sound.id via a variable!

-- let's store the sound.id for example.ogg inside of a variable!
local soundID = getSoundId("sounds/example.ogg")
toggleSoundPause(soundID)


Arguments

id: integer (number)
The id for the currently playing audio file! ("sound.id")


Flags

none


Return

success
Returns true or false boolean value depending on if the linked sound was successfully paused or resumed!


Relevant Pages: getSoundId - getSoundProperty - setSoundProperty - startSound - stopSound