いろいろといってもまだ少ないですが。
プロジェクト・アクション・子アクションの作成
tell application "OmniFocus" tell front document set oFolder to folder "オークション" tell oFolder set oProj to make new project with properties {name:"new proj"} tell oProj set oTask to make new task with properties {name:"new task", note:"This is a new task."} tell oTask make new task with properties {name:"child task"} end tell end tell end tell end tell end tell
Inboxにアクションを追加
tell application "OmniFocus" tell front document make new inbox task with properties {name:"New Task", note:"This is a new task."} end tell end tell
クイックエントリの表示
tell application "OmniFocus" tell quick entry activate end tell end tell