Palm Desktop
Palm Desktop
- Subject: Palm Desktop
- From: Mirko Gude <email@hidden>
- Date: Sun, 02 Sep 2001 11:18:16 +0100
Dear List,
who can help with Palm Desktop and Applescript?
I am able to get a contact with a attached note (look at the script at the
end of this mail). Then I try to get the contents of the attached note, but
I can't get a way do to this.
Thx,
Mirko Gude
tell application "Palm Desktop"
activate
set alladdress to count of address
repeat with i from 1 to alladdress
get count of attachment of address i
if (count of attachment of address i) is not 0 then
set theContactSaltName to the salutation name of name info of
address i
display dialog "Contact with attachment: " & return &
theContactSaltName
end if
end repeat
end tell