Imagine an simple AS3 Array of objects like this:
var arr:Array = new Array ();
arr.push ({xx:"50", yy:"200"});
arr.push ({xx:"75", yy:"50"});
arr.push ({xx:"25", yy:"100"});
arr.push ({xx:"75", yy:"75"});
I need to do the 'math' on array in a such a way that I get this as result:
(logic should be first smallest yy and then smallest xx)
1. xx:"75", yy:"50"
2. xx:"75", yy:"75"
3. xx:"25", yy:"100"
4. xx:"50", yy:"200"
Any hint, example... opinion, please help :)