スクリプトを実行した時間でドキュメント名を登録します。
スケジュール管理に使えるかも。
スクリプトエディタで開く
global b1, e1, a1
tell application "iCal"
set {c1, a1} to {current date, name of every calendar}
d1() of me
make new event at end of calendar (b1's item 1) with properties {start date:c1, summary:e1, recurrence:""}
end tell
on d1()
tell document 1 of application "InDesign CS_J" to set {e1, b1} to {name as Unicode text, choose from list a1 with prompt "登録するカレンダーを選択"}
end d1