my goal: is to be able to highlight one or more messages in the in-box,
then apply a rule which will create a special reply to all from a certain
account.
so far, I have created the rule which works fine. However, I am not able
to change the account automatically.
At present, I have to go to the out-box and manually select those messages
and after selecting one more messages in the out-box, run the script below
which will change the account to: [EMAIL PROTECTED] ( which is an active
account)...
I tried adding the AppleScript below to the original rule, however it does
not work. it does not produce an error, so I guess it�s working somewhat,
but not changing the account.
Q: Is there some way to alter this script so that I can edit to the
original rule - to make this all a one step process?
CURRENT RULE:
- REPLY (set reply text to bla bla bla)
- run this applescript (not working)
the script...
tell application "Microsoft Entourage"
set selectedMessages to current messages
-- if there are no messages selected, warn the user and then quit
if selectedMessages is {} then
display dialog "Please select a message first and then run this
script." with icon 1
return
end if
repeat with theMessage in selectedMessages
-- Assume theMsg is a reference to the message
set account of theMessage to POP account "[EMAIL PROTECTED]"
end repeat
end tell
--
Thanks - RevDave
[EMAIL PROTECTED]
[db-lists]
Check out some great Domain Names at:
http://www.domains4days.com
--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>