Re: Palm Desktop: how to make a datebook entry or todo?
Re: Palm Desktop: how to make a datebook entry or todo?
- Subject: Re: Palm Desktop: how to make a datebook entry or todo?
- From: "Jason W. Bruce" <email@hidden>
- Date: Mon, 04 Feb 2002 16:01:42 +0000
andrew hinton asked:
>
So, hopefully avoiding another flame war over the scriptability of PD, could
>
someone who knows how just give me a slice of code that creates an
>
appointment or todo and assigns it all the various attributes??
Flame war. Who me? : >
I'm not on OS X yet, but for OS 9:
tell application "Palm Desktop"
create new to do with {due date:"2/4/2002", title:"My New Task",
secondary category: category "My Category"}
end tell
for a to do, and:
tell application "Palm Desktop"
create new event with {date:"2/4/2002",start time: "8:00", duration:59,
title:"New Task", secondary category:category "PalmCategory"}
end tell
for an appointment.
HTH
Jason Bruce