Palm Desk Top
Palm Desk Top
- Subject: Palm Desk Top
- From: "Hendrik W. M. van Eeden" <email@hidden>
- Date: Sun, 02 Jan 2005 14:02:26 -0500
Title: Palm Desk Top
I have been trying to get the events in the date book of the Palm Desktop via applescript.
This is the script I have been using
....
tell application "Palm Desktop"
set VacEvents to {}
set lstEvents to events whose start time ≥ datStartOfToday and end time ≤ datEndOfToday --get a list of today's events
repeat with itms in lstEvents
if name of primary category of itms is in lookuplst then --check for holidays and vacations
set end of VacEvents to the name of primary category of itms
end if
end repeat
-- see if the list is empty
if VacEvents is not {} then
....
Etc.
The lstEvent will contain all the events for that day except for the repeating once.
I don’t know how to get the repeating events. Does anyone know or can someone steer me with a link?
Thanks.
Sincerely,
Hendrik W. M. van Eeden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden