Curious about two way scripts
Curious about two way scripts
- Subject: Curious about two way scripts
- From: David Groover <email@hidden>
- Date: Sun, 24 Mar 2002 23:11:42 -0500
OK. I tried posting this earlier today on the Emailer list. So far I have
not heard any response (but hey, it's Sunday) and I thought this would be
a god place to ask for help.
I have Panorama set up to send a new email via an AppleScript to Emailer.
This is very similar to how FileMaker does it. In fact, I believe the
script is a Filmmaker to Emailer script that I modified for Panorama.
/*
tell application "Panorama"
set strFullnameF to Value of Cell "First"
set strFullnameL to Value of Cell "Last"
set strEmail to Value of Cell "Email"
set strFullname to strFullnameF & " " & strFullnameL as string
end tell
tell application "Claris Emailer"
activate
create mail subject "" recipients {{name_old:strFullname,
address_old:strEmail, type_old:0}}
end tell
*/
I am ready for the next step, which is managing (listing and looking up)
my emails through Panorama. Does anyone have any experience with two way
scripts? Meaning, I know I can open a new message in Emailer via
AppleScript, but I want to learn how to open a new message, compose it in
Emailer, and on send or set to draft, copy the subject line, date, and
(Emailer) folder path, back into my contact's record in Panorama. Then,
at a future time, I can simply click on the subject line for any emails
to a client, and the Emailer message opens in Emailer for further review.
Does anyone have any experience or ideas on doing this? I assume that
most will not have Panorama experience and so FileMaker experience should
so just as well.
Thanks much.
Dave Groover
PS - I am not THAT qualified in AppleScript and any included examples
would be very much appreciated.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.