On 12/22/00 06:14, chris stearns wrote:

> if "Microsoft Entourage" is in currProcs then
>   tell application "Microsoft Entourage" to quit
> end if

Try adding 'activate':

    if "Microsoft Entourage" is in currProcs then
        tell application "Microsoft Entourage"
            activate
            quit
        end tell
    end if

Most apps will respond to a quit command better if they're the currently
active process.


George

-- 
George Clark - [EMAIL PROTECTED]



-- 
To unsubscribe:               <mailto:[EMAIL PROTECTED]>
To search the archives: 
          <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>

Reply via email to