Does anyone out there know how to sort a sub array based on one element within it? I have an array which contains a number of sub arrays. The sub arrays each have an element consisting of a single number. I need to sort the sub arrays within the “mother” array using this number as the key.
maybe you can work out something off this. mother is an array containg arrays one, two, and three with values 4, 2, and 7. the for loop goes through each element in mother and prints them out.
mother = new Array();
one = newArray();
two = newArray();
three = new Array();
one = 4; two = 2; three = 7;
mother = [one, two, three];
for(i=0; i<mother.length; i++) {
//your sorting algorithm here
trace(mother*);
}