stop_sound

Declaration

stop_sound (file_name: STRING)

Description

Stops the sound file file_name. If file name is empty, this function stops all playing sounds. This function always looks for sound files in the location 'sounds'.

See Also

play_sound
multimedia functions

Location manager

Example

script kill_voice_over is
  stop_sound ('voice_over1.wav')
end