Moving a selected email to a standard folder

W

wflanagan

Hi all,

I'm trying to write a script in Entourage to move an email to a
standard folder. Right now, nothing I've found seems to work well.

To do that, I'd like to find an applescript that will perform that a
"move". So far, without documentation, I've not been able to do it.

Any suggestions?

William
 
B

Barry Wainwright [MVP]

Hi all,

I'm trying to write a script in Entourage to move an email to a
standard folder. Right now, nothing I've found seems to work well.

To do that, I'd like to find an applescript that will perform that a
"move". So far, without documentation, I've not been able to do it.

Any suggestions?

William

For documentation, you need to look at the applescript dictionary of
Entourage. Also look at many of the freeware scripts available at
<http://scriptbuilders.net/cat.php?category_list=2&act=show_cat&cat_id=2>


Tell app "microsoft entourage"
Set theFolder to folder "IBM" of folder "computer companies" of imap account
"mac.com"
Move (get current messages) to thefolder
End tell
 
Top