Difference between revisions of "LlStopSound"

From Second Life Wiki
Jump to navigation Jump to search
m (Best to give people links when directing them to another function, even if it is mentioned above or below.)
Line 8: Line 8:
|caveats=*There is no way to stop a specific sound.
|caveats=*There is no way to stop a specific sound.
|constants
|constants
|examples
|examples=
<lsl>
default
{
    state_entry()
    {
        llLoopSound("string soundname or UUID", 1.0);
    }
    touch_start(integer total_number)
    {
        llStopSound();//As if by magic the sound stops!!
    }
}
</lsl>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 20:43, 1 June 2009

Summary

Function: llStopSound( );

Stops all attached sounds that are currently playing

Caveats

  • There is no way to stop a specific sound.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   state_entry()
   {
       llLoopSound("string soundname or UUID", 1.0);
   }
   touch_start(integer total_number)
   {
       llStopSound();//As if by magic the sound stops!!
   }

}

</lsl>

See Also

Functions

•  llSound This function has been deprecated, please use llPlaySound instead.
•  llPlaySound
•  llPlaySoundSlave
•  llLoopSound
•  llLoopSoundMaster
•  llLoopSoundSlave

Deep Notes

Search JIRA for related Issues

Signature

function void llStopSound();