Applescipt 在 iCal 中查找事件

发布于 2024-09-02 03:51:38 字数 97 浏览 6 评论 0原文

我是 Applescript 世界的新手! 我试图弄清楚如何查找包含某些单词的特定日历事件。 特别是,我不知道如何重复在日历事件中找到某些单词......

提前致谢

I'm new to the world of Applescript!
I'm trying to figure out how to find into a specific calendar events that contains certain words.
In particular, I don't know how to make a repeat that find certain word in the calendar's events...

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哆兒滾 2024-09-09 03:51:38

这里有一个 MacTech 教程,其中包括一个搜索示例: http ://www.mactech.com/articles/mactech/Vol.21/21.11/ScriptingiCal/index.html

以下是如何查找与搜索条件匹配的日历事件的工作示例:

tell application "iCal"
    tell calendar "Domestic"
        set theEventList to every event whose summary contains "Recycling"
    end tell
    set theEvent to first item of theEventList
    return summary of theEvent
end tell

此示例适用于我。它查找我的“国内”日历中包含术语“回收”的所有事件,然后返回此列表中第一个事件的摘要。

There's a MacTech tutorial here which includes a search example: http://www.mactech.com/articles/mactech/Vol.21/21.11/ScriptingiCal/index.html

Here's a working example of how you might find calendar events that match a search criterion:

tell application "iCal"
    tell calendar "Domestic"
        set theEventList to every event whose summary contains "Recycling"
    end tell
    set theEvent to first item of theEventList
    return summary of theEvent
end tell

This example works for me. It finds all events in my "Domestic" calendar which contain the term "Recycling" and then returns the summary of the first one in this list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文