Re: Personality settings in Eudora
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.