Re: Options --> After sending, move to...
- From: Diane Ross <diane@xxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Fri, 20 Jul 2007 18:45:40 -0700
On 7/20/07 10:51 AM, in article C2C66E62.11FD5%alevin@xxxxxxxxxxxxxxxxxxxx,
"Andrew Levin" <alevin@xxxxxxxxxxxxxxxxxxxx> wrote:
Here's a good link to Allen's scripts:
The link to Allen Watson's scripts point to a .Mac account that apparently
is not current (at least, the link is bad). I did a Google search and found
his "Open Folder" somewhere else but not his "Open Folder By".
<http://homepage.mac.com/WebObjects/FileSharing.woa/58/wo/Br3BJSeVxn9cmJCj.1
/2.2.1.2.26.31.97.3.35.0.1.1.1?user=allen_a_watson&fpath=Scripts:Entourage%2
0OS%20X&%202004&templatefn=FileSharing3.html>
Get this script Open Folder:
<http://homepage.mac.com/allen_a_watson/.Public/Scripts/Entourage%20OS%20X%2
6%202004/Open%20Folder%20%5CcmF.bin>
There is an error in the name when you download. It just shows up as cmF
which was the shortcut Allen had assigned. Be sure to check to rebuild
folder list. It will then get your folders.
I would be very interested in your Move To folders scripts. Thank you for
offering.
This one moves to a subfolder. Look for the line
move theMessages to folder "read mail" of folder "inbox"
Change the name of the folders. This one is moving selected messages from
the inbox to a subfolder of the inbox named "read mail".
tell application "Microsoft Entourage"
try
set theMessages to current messages
on error
display dialog "select some messages before running this script."
buttons {"Quit Script"} default button 1 with icon stop
return
end try
try
move theMessages to folder "read mail" of folder "inbox"
on error
display dialog "An error occurred and the messages were not moved.
Does the folder\"read\" exist?" buttons {"Quit Script"} default button 1
with icon stop
return
end try
repeat with aMessage in theMessages
set the read status of aMessage to read
end repeat
end tell
-------------
This script moves to a folder named "!Recent Items" Use this one as an
example for a folder not a subfolder.
tell application "Microsoft Entourage"
try
set theMessages to current messages
on error
display dialog "select some messages before running this script."
buttons {"Quit Script"} default button 1 with icon stop
return
end try
try
move theMessages to folder "!Recent Items"
on error
display dialog "An error occurred and the messages were not moved.
Does the folder\"!Process Later\" exist?" buttons {"Quit Script"} default
button 1 with icon stop
return
end try
end tell
If you need help with editing the folders, post back with the folder names
and details like it's place in your folder list.
--
Diane Ross, Microsoft Mac MVP
Entourage Help Page <http://www.entourage.mvps.org/>
Entourage Help Blog <http://blog.entourage.mvps.org/>
- References:
- Options --> After sending, move to...
- From: Andrew Levin
- Re: Options --> After sending, move to...
- From: Diane Ross
- Re: Options --> After sending, move to...
- From: Andrew Levin
- Re: Options --> After sending, move to...
- From: Diane Ross
- Re: Options --> After sending, move to...
- From: Andrew Levin
- Options --> After sending, move to...
- Prev by Date: Re: importing contacts from Outlook on windows to Entourage 2004
- Next by Date: Re: Unofficial poll on size of database
- Previous by thread: Re: Options --> After sending, move to...
- Next by thread: Entourage Junk Filter getting lazy
- Index(es):
Relevant Pages
|