Come posso fare a creari tanti nuovi oggetti "new Sound" (e relativo "attachSound()"), quanti sono i clip definiti più sopra?codice:clip1 = new Array("bla", "700"); clip2 = new Array("bla", "300"); _root.suono1 = new Sound(); _root.suono1.attachSound(clip1[0]); _root.suono2 = new Sound(); _root.suono2.attachSound(clip2[0]);
-