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?

With Barry's help I created scripts for five of my most used folders and then assigned a key short to them. This moves to my “tips” folder.

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 "Tips"
    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


--
Diane Ross
MVP Entourage (MVPs are volunteers)
Entourage Help Page
<http://www.entourage.mvps.org/>

Reply via email to