ファイルのグループを強調表示してそれらから変更日を取得し、最新の日付でファイルを強調表示/選択/ラベル付けするアクションを作成する方法を知りたいです。
更新:私はそれをさらに進めたので、Applescriptでそれをやりたいです。これが私がこれまでに持っているものです
set dateList to {}
tell application "Finder"
set inputList to get selection
repeat with i from 1 to count (inputList)
set end of dateList to get modification date of item i of inputList
end repeat
end tell
dateList
--Compare section...
set boolList to {}
set j to 1
repeat with i from 1 to count (dateList)
if i is (count (dateList)) then
set j to 0
end if
set end of boolList to item i of dateList > item (i + j) of dateList
end repeat
boolList