codice:
var sabati:Array = [[7, 14, 21, 28], [4, 11, 18, 25], [4, 11, 18, 25], [1, 8, 15, 22, 29], [6, 13, 20, 27], [3, 10, 17, 24], [1, 8, 15, 22, 29], [5, 12, 19, 26], [2, 9, 16, 23, 30], [7, 14, 21, 28], [4, 11, 18, 25], [2, 9, 16, 23, 30]];
dat = new Date();
mm = (dat.getMonth()+1);
for (i=0; i<sabati[mm].length; ++i) {
clip0.duplicateMovieClip("clip"+i, i);
this["clip"+i]._x += clip0._height*i;
this["clip"+i].testo.text = sabati[mm][i];
this["clip"+i].giorno = sabati[mm][i];

this["clip"+i].onRelease = function() {
querySabato = "http://www.miosito.com/estrai_sabato.php?sabato="+this.giorno;
// qui uso il testo restituito e lo presento 
};
}