And if you want to stop the loop, you have to do this:

Code:
 
var musikhandle;
var musicvol = 88;
sound title = <title.wav>;


function play_title()
{
musikhandle = play_loop (title,musicvol);
RETURN;
}

function stop_title()
{
stop_sound musikhandle; //Stop the in play_title() played sound
}




Bit Happens!