Permanent delete

S

Simmons, Alex

A few of us in our office are trying to move from a Windows to a Mac
environment. We have installed Entourage 2004 and have liked it.

One feature that we have not been able to find in Entourage that is in
Outlook is the ability to permanently delete an item rather than just have
it sent on deletion to the Deleted Items Folder. In Outlook you do this by
holding down the shift key when you delete an item. Is there a way in
Entourage 2004 to delete messages on a permanent basis bypassing the route
to the deleted items folder?

Thanks for any help.

Regards,

ASimmons
 
D

Dave Cortright

A few of us in our office are trying to move from a Windows to a Mac
environment. We have installed Entourage 2004 and have liked it.

One feature that we have not been able to find in Entourage that is in
Outlook is the ability to permanently delete an item rather than just have
it sent on deletion to the Deleted Items Folder. In Outlook you do this by
holding down the shift key when you delete an item. Is there a way in
Entourage 2004 to delete messages on a permanent basis bypassing the route
to the deleted items folder?

Thanks for any help.

Regards,

ASimmons

I use this AppleScript:

tell application "Microsoft Entourage"
set cm to current messages
repeat with msg in cm
delete msg
try
delete msg
end try
end repeat
end tell
 
S

Simmons, Alex

Thanks, Dave. Sounds like it is not a built in key stroke like in Outlook,
so I am particularly grateful that you supplied the script. I don't know
much about the AppleScripts yet. (Perhaps you can assign a hotkey to a
script?) But I will give this a try over the weekend.

I really appreciate you taking the time to respond.

Much obliged,

ASimmons
 
P

Paul Berkowitz

Thanks, Dave. Sounds like it is not a built in key stroke like in Outlook,
so I am particularly grateful that you supplied the script. I don't know
much about the AppleScripts yet. (Perhaps you can assign a hotkey to a
script?) But I will give this a try over the weekend.

Yes, you can. Check the Entourage Help: "About the script menu".

--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <http://www.entourage.mvps.org/faq/index.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 Microsoft Office you are using -
**2004**, X or 2001. It's often impossible to answer your questions
otherwise.
 
Top