P
Piyush Mehrotra
I created a script to create an event using control-E \cE using the
selected email message (see script fragment below)
-- get the information from the message, and store it in variables
set theName to subject of theMessage
set theCategory to category of theMessage
set thePriority to priority of theMessage
set theContent to content of theMessage
-- create a new event with the information from the message
set newEvent to make new event with properties {subject:theName,
content:theContent, category:theCategory, priority:thePriority}
This works fine except that in the event that is created the Reminder
checkbox is not checked. Could anybody what the name of the property is so
that modify the above property list to have the reminder box checked by
default.
Thanx
- Piyush
selected email message (see script fragment below)
-- get the information from the message, and store it in variables
set theName to subject of theMessage
set theCategory to category of theMessage
set thePriority to priority of theMessage
set theContent to content of theMessage
-- create a new event with the information from the message
set newEvent to make new event with properties {subject:theName,
content:theContent, category:theCategory, priority:thePriority}
This works fine except that in the event that is created the Reminder
checkbox is not checked. Could anybody what the name of the property is so
that modify the above property list to have the reminder box checked by
default.
Thanx
- Piyush