Title: Re: Keyboard command to send selected message to a folder
>> On 9/15/03 10:01 PM, "Scott Haneda" <[EMAIL PROTECTED]> wrote:
>>>> How can I use a keyboard sequence to send a selected message to a
>>>> particular folder?
>>>
> I use command-shift-M and file the message in the folder list that pops up.
I have a 5 scripts that I use for moving messages to my most used folders. This one moves to a subfolder of the inbox.
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
--
Diane
- Re: Keyboard command to send selected message to a folder Tom Strand
- Re: Keyboard command to send selected message to a folde... Allen Watson
- Diane Ross
