sshrum Posted February 18, 2007 Posted February 18, 2007 Here's a sample to show what I am seeing: #include <array.au3> dim $aTest[4] $aTest[0]="3" $aTest[1]="1920" $aTest[2]="0" $aTest[3]="-768" _ArrayDisplay($aTest, "PRESORT") _ArraySort($aTest,0,1) _ArrayDisplay($aTest, "SORTED") Ack...I need numeric sorting. Is this a limitation of arraysort, or am I doing something wrong? Sean Shrum :: http://www.shrum.net All my published AU3-based apps and utilities 'Make it idiot-proof, and someone will make a better idiot'
sshrum Posted February 18, 2007 Author Posted February 18, 2007 Opps...nevermind...lost the quotes. Now it works as numeric. Sean Shrum :: http://www.shrum.net All my published AU3-based apps and utilities 'Make it idiot-proof, and someone will make a better idiot'
Moderators SmOke_N Posted February 18, 2007 Moderators Posted February 18, 2007 Opps...nevermind...lost the quotes. Now it works as numeric.I also made an array sort for numbers specifically... _ArraySortNum(). Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now