Hi,
Just curious if there is a quick/smart way to dump and retrieve multidimensional arrays to XML.
I was going to take this tedious approach, with a bunch of loops for each dimension but I have a dozen arrays to handle in total
//Fill Array
while(indexA<7){
XML.setValue("PT:X", xmlStylus, synthArray[indexA][indexB][indexC]);indexA++;xmlStylus++;
indexB=1;
while(indexB<3){
XML.setValue("PT:X", xmlStylus, synthArray[indexA][indexB][indexC]);indexB++;xmlStylus++;
indexC=1;
while(indexC< 17){
XML.setValue("PT:X", xmlStylus, synthArray[indexA][indexB][indexC]);indexC++;xmlStylus++;
}}}
thanks for any tips!