Title: Re: Completed dates for tasks...
Working on the basis that the marking complete would have been the last modification, you could put this script in the script menu:

tell application "Microsoft Entourage"
    set theTask to item 1 of (get selection)
    if class of theTask is not task then
        display dialog "No task selected!" buttons {"Abort"} default button 1 with icon stop
        return
    end if
    set theDate to (modification date of theTask) as text
    display dialog "This task was last modified on " & theDate with icon note buttons {"OK"} default button 1
end tell

Save the script as a compiled script & put it in the ‘Entourage Script Menu Items’ folder in your ‘Microsoft User Data’ folder.


--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
Seen the All-New Entourage Help Pages? - Check them out:
        <http://www.entourage.mvps.org/>


> From: Kirk McElhearn <[EMAIL PROTECTED]>
> Reply-To: "Entourage:mac Talk" <[EMAIL PROTECTED]>
> Date: Fri, 02 Jul 2004 11:20:03 +0200
> To: "Entourage:mac Talk" <[EMAIL PROTECTED]>
> Subject: Completed dates for tasks...
>
> Am I missing something, or is there now way to find out the date a completed
> task was completed?
>
>  
> Kirk
>  
>         My new e-book: Take Control of Users and Accounts in Panther
>           http://www.tidbits.com/takecontrol/panther/users.html
>   . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
>   . . . . . . .  [EMAIL PROTECTED] | http://www.mcelhearn.com  . . . . . .
>   . .  Kirk McElhearn | Chemin de la Lauze | 05600 Guillestre | France  . .
>
>
> --
> To unsubscribe:                     
> <mailto:[EMAIL PROTECTED]>
> archives:       
> <http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
> old-archive:       
> <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>
>

Reply via email to