Is there any way to unflag a message as part of a rule in Office v.X?
I've tried telling the rule to set the status of flagged messages to
something else, like 'read,' but the flag remains. There doesn't seem
to be an 'unflagged' option. Any ideas?
You're right: it's a silly lack in the rule actions not to be able to set
status to Unflagged. Set the rule to run a script. I'm assuming you'll be
running this rule manually since I don't think messages can be flagged by
senders. (If I'm wrong this will work anyway,) If 'Status is Flagged' is in
the rule criteria you don't have to search for it again in the rule, Just
this:
tell app "Microsoft Entourage"
set currMsgs to current messages
repeat with i from 1 to (count currMsgs)
set theMsg to item i of my currMsgs
set flagged of theMsg to false
end repeat
end tell
This might work faster from the script menu directly than from a rule. - and
you can call it by keyboard shortcut there. And if you update to Entourage
2004, this version might work much faster again (untested), from the script
menu:
tell app "Microsoft Entourage"
set currMsgs to current messages
set flagged of currMsgs to false
end tell
--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: <
http://www.entourage.mvps.org/toc.html>
AppleScripts for Entourage: <
http://macscripter.net/scriptbuilders/>
Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.
PLEASE always state which version of Entourage you are using - **2004**, X
or 2001. It's often impossible to answer your questions otherwise.