Ad esempio:

codice:
suono1 = new Sound();
suono2 = new Sound();
suono1.attachSound("loop1");
suono2.attachSound("loop2");
suono1.onSoundComplete = function()
{
	suono2.start();
}
suono1.start();