On 15/1/05 2:52 pm, "revDAVE" <[EMAIL PROTECTED]> wrote:

>  I would like to be able to double click on the subject line of the messages
> window,  and have the e-mail open into a new window in a certain position
> and location. I was wondering if there is a way to have this automatically
> happen somehow? I am not very good with AppleScript, and  my attempt below
> did not work... Any ideas?
> 
> 
> tell application "Microsoft Entourage"
>     
>     set selectedMessages to current messages
>     
>     repeat with theMessage in selectedMessages
>         
>         set bounds of window of theMessage to {50, 50, 989, 745}
>         
>     end repeat
> end tell


tell application "Microsoft Entourage"
    set selectedMessages to current messages
    repeat with theMessage in selectedMessages
        open theMessage
        set bounds of window 1 to {50, 50, 989, 745}
    end repeat
end tell


-- 
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/>


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