有人可以帮助我使用 AppleScript 提取 OmniFocus 任务,其中到期日期不为空,并且我可以在其中指定给定标签,如下所示:
tell application "OmniFocus"
activate
tell document 1
set AllTasks to flattened tasks whose ¬
(due date ≠ missing value) and tags contains "Baseball"
end tell
end tell
以上,显然不起作用,我尝试过的其他变体会产生错误。如果可能的话,我希望以这种方式提取任务,而不是仅提取没有截止日期的任务,然后循环遍历这些任务以检查包含“棒球”的标签,这是我目前所做的。
谢谢。