Looping Mp3 in this

Guys how do i get this sound to loop?

“sonido1” - my mp3

stop();
import com.greensock.TweenMax;
import com.greensock.easing.*


function love() {

TweenMax.to(sonido1, 1, {volume:1, delay:0.5});

};

function apagado() {

TweenMax.to(sonido1, 1, {volume:0, delay:0.5});

};

//////////////////////////////////////////////////////////////////////////////

var sonido:Boolean = true;

encendidoapagado.addEventListener(MouseEvent.CLICK,toggleSound);
encendidoapagado.buttonMode = true;
encendidoapagado.mouseChildren = false;

function toggleSound(e:MouseEvent)
{
    if(sonido)
    {
        apagado();
        sonido = false;
    }
    else
    {
        love();
        sonido = true;
    }    
}