• 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: Personality settings in Eudora
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Personality settings in Eudora


  • Subject: Re: Personality settings in Eudora
  • From: John Delacour <email@hidden>
  • Date: Sun, 13 Apr 2003 21:51:16 +0100
  • Mac-eudora-version: 6.0a15

At 12:14 pm -0600 13/4/03, Doug McNutt wrote:

Does the connect command issued from an AppleScript use the setting for "check mail on manual checks"? Or does it check for all personalities?

It does whatever would happen if you typed command-m

To check specially, you type command-option-m


What is the relationship between x-eudora setting numbers and settings within a personality? Some of them seem to line up but none seems to be the "check mail on manual" box I'm looking for.


<x-eudora-setting:183>


Some settings relate only to personalities. Only certain settings can be personality-specific, but more than you might think.


This script (which should be placed in Eudora's Scripts folder and run from the menu or toolbar) will set up the personalities for checking. The highlighted personalities are those that already do manual checking. You can do this and then add a connect command, or you can use the info in this script to write one that requires no user interaction.




set {list_, checked_} to {{}, {}}
set {do_check, dont_check} to {"n", "y"} -- sic
tell application "Eudora"
repeat with i from 1 to count personalities
tell personality i
if its setting 183 is "n" then
set name_ to its name
copy the name_ to the beginning of the list_
copy the name_ to the end of checked_
else
copy its name to the end of the list_
end if
end tell
end repeat
end tell
--<< END
set chosen_ to choose from list list_ default items checked_ with prompt "Use command key etc. to select personalities to check manually" with multiple selections allowed
--END
if chosen_ is in {false} then return
tell application "Eudora"
repeat with p in list_
set p to contents of p
if p is in chosen_ then
set setting 183 of personality p to do_check
else
set setting 183 of personality p to dont_check
end if
end repeat
end tell
_______________________________________________
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.
  • Follow-Ups:
    • Re: Personality settings in Eudora
      • From: Doug McNutt <email@hidden>
References: 
 >Re: Why doesn't this work any more? (From: John Delacour <email@hidden>)
 >Personality settings in Eudora (From: Doug McNutt <email@hidden>)

  • Prev by Date: Re: Smile features?
  • Next by Date: UI Scripting deep menus
  • Previous by thread: Personality settings in Eudora
  • Next by thread: Re: Personality settings in Eudora
  • Index(es):
    • Date
    • Thread