New Flexscript Arrays are nice, and they conveniently mimic many of the ECMAScript Array methods. One of the most important omissions is a .sort() method. It appears that the only ways to sort something in Flexscript are using a Table.sort() or implementing some sorting algorithm by hand.
I'd like to see .sort() method added to Array, with an optional function-like argument to override the comparison function. Something along the lines of
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort