sort
sort
- Subject: sort
- From: Shawn Brady <email@hidden>
- Date: Sun, 23 Aug 2009 07:21:10 -0400
tell application "Finder" set myFolder to "Macintosh HD:Users:Shawn:Pictures:TEST" as alias -- choose folder set itemList to get every item of myFolder set sortedList to sort itemList by modification date -- modification date, name, kind, comment display dialog (item 1 of sortedList as string) & return & (item 2 of sortedList as string) & return & (item 3 of sortedList as string) -- cant sort by size end tell |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
- Follow-Ups:
- Re: sort
- From: Michelle Steiner <email@hidden>