何する物かというと、ブラウザなどダウンロードフォルダにフォルダアクションとして登録すれば、ダウンロードしたファイルの変更日をダウンロードした時間に書き換えることで、順に並び替え、もしくはTiger以上でスマートフォルダを併用することで、すぐに発見出来るようにするフォルダアクション。ダウンロードフォルダが散らかってる自分みたいなものぐさには便利?
on adding folder items to this_folder after receiving added_items
try
set the item_count to the number of items in the added_items
repeat with i from 1 to item_count
set item1 to item i of added_items
tell application "Finder"
set modification date of item1 to current date
end tell
end repeat
on error
beep 2
end try
end adding folder items to