How to restart a sound that was paused. This sound is reproduced endlessly (loops=-1)
-- Load sound Intro = audio.loadSound( "Base.mp3" ) -- Play sound Apertura = audio.play( Intro, { channel=11, loops=-1, fadein=0 } ) -- Pause sound Apertura = audio.pause( Intro, { channel=11, loops=-1, fadein=0 } ) -- Replay sound ¿?