new todo in iCal
new todo in iCal
- Subject: new todo in iCal
- From: doug rogers <email@hidden>
- Date: Sat, 7 May 2005 10:02:40 -0400
On May 7, 2005, at 8:23 AM, email@hidden
wrote:
how do I create a new Todo in iCal? Everything I am trying doesn't
work.
here is my latest failed attempt
tell application "iCal"
set nT to make new todo at calendar "Work" with properties
{summary:"TEST"}
end tell
Hey! I can answer this one! Thanks to John Delacourt :-)
tell application "iCal"
launch
set theText to the clipboard
repeat with m from 1 to (count of paragraphs of theText)
set NewToDo to make new todo at end of todos of calendar 1 with
properties ¬
{due date:(current date), priority:3, summary:(paragraph m of
theText)}
end repeat
end tell
There is a crack in everything. That's how the light gets in.
__________<http://home.golden.net/~samu>__________
_______________________________________________
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