Re: a question on scripting Eudora (guess who this is for..)
Re: a question on scripting Eudora (guess who this is for..)
- Subject: Re: a question on scripting Eudora (guess who this is for..)
- From: John Delacour <email@hidden>
- Date: Wed, 9 Oct 2002 21:05:19 +0100
- Mac-eudora-version: 5.3 alpha
At 12:19 pm -0400 9/10/02, Rob Jorgensen wrote:
>
How about this:
>
>
tell application "Eudora"
>
reply message 0
>
set personality of message 0 to personality "your_desired_personality"
>
end tell
>
>
Tested with Eudora 5.1.1 and OS X 10.2.1.
Yes. Or you could have a toolbar button run this script, which allows you to choose any personality and whether to reply to all.
tell app "Eudora"
set {ls, n} to {{"Reply to all"}, count personalities}
repeat with i from 1 to n
set end of ls to name of personality i
end repeat
end tell
set ppt to "Reply using personality:"
set choice to choose from list ls with prompt ppt default items item 1 of ls with multiple selections allowed
set p to last item of choice
tell app "Eudora"
if choice contains "Reply to all" then
set reply_ to reply message "" with everyone
else
set reply_ to reply message ""
end
set personality of reply_ to personality p
end
JD
_______________________________________________
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.