prova così:
testo = "1,2,3,4,5,6";
array = new Array();
for (i=0; i<=5; i++) {
temp=testo.split();
array.push(temp[i]);
}
trace (array[0]);
ciao
prova così:
testo = "1,2,3,4,5,6";
array = new Array();
for (i=0; i<=5; i++) {
temp=testo.split();
array.push(temp[i]);
}
trace (array[0]);
ciao