Ciao
Ho inserito questo codice che funziona
ma la musica non si ripete. Come posso fare perchè continui all'infinito?
Tra l'altro in qusto codice ci sono delle cose che non servono e non so cosa togliere
Per favore aiutatemi!!!
Grazie
//musica
var mySound:Sound=new Sound();

var pathSound:URLRequest=new URLRequest("brano.mp3");

mySound.load(pathSound);
mySound.play();



mySound.addEventListener(Event.COMPLETE, Id3Info);

function Id3Info(e:Event)
{
var id3:ID3Info=e.target.id3;
trace(mySound.id3.artist);
}

// pulsante che mette in stop l'audio//
stop_btn.addEventListener(MouseEvent.CLICK, ferma);

function ferma(e:MouseEvent)
{
SoundMixer.stopAll();
}

// pulsante che fa partire l'audio//

function riparteAudio(e:MouseEvent)
{
mySound.play();
}

play_btn.addEventListener(MouseEvent.CLICK, riparteAudio);