audio_pause_all();
Returns: N/A
With this function you can pause all sounds that are currently
playing.
if keyboard_check_pressed(ord("P"))
{
global.Pause = !global.Pause;
if global.Pause
{
audio_pause_all();
}
else
{
audio_resume_all();
}
}
The above code checks for a press of the keyboard key "P" and if it detects one it sets the global variable "Pause" to true or false and then either pauses all sounds or restarts all previously paused sounds.