codice:
suono.onSoundComplet = function()
{
	var index:Number = lista.selectedIndex;
	if(index < lista.length - 1){
		lista.selectedIndex = index + 1;
	} else {
		lista.selectedIndex = 0;
	}
}