Hi eveybody,
I have the following problem: I am using iCal events to trigger AppleScripts, which create documents. Those AppleScripts need to find the iCal event that triggered them, because in the notes field of the event their is some configuration given about how the document is to be prepared.
Now the system works perfect as long as the event is not a so called recurring event…Because it seems that you cannot get them with AppleScript. If you create a new calendar with exactly one event with a recurrence of every week, then the following code will still only return one event…
tell application "iCal"
tell calendar "Test"
get every event
end tell
end tell
Is there some kind of a workaround which does not include parsing the ics-files? I would just love to get all events of a day INCLUDING the recurring events…
Thanks so much!
Martin