• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: a question on scripting Eudora (guess who this is for..)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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.

References: 
 >a question on scripting Eudora (guess who this is for..) (From: Charles Arthur <email@hidden>)
 >Re: a question on scripting Eudora (guess who this is for..) (From: Rob Jorgensen <email@hidden>)

  • Prev by Date: How to get AppleEvents from AppleScript to Revolution
  • Next by Date: Jaguar System Events app and log out
  • Previous by thread: Re: a question on scripting Eudora (guess who this is for..)
  • Next by thread: Re: a question on scripting Eudora (guess who this is for..)
  • Index(es):
    • Date
    • Thread