On 12/9/00 11:23 AM, "Allen Watson" <[EMAIL PROTECTED]> wrote:

> To get you started, here's a script for "Next", using Puppet Menu (make sure
> you put Akua Sweets into the Scripting Additions folder in the System folder
> before trying this):
> 
> tell application "Microsoft Entourage"
>   activate
>   try
>       puppet menu {"View", "Next"}
>   on error
>       beep
>   end try
> end tell

Actually, it doesn't know it's erroring when it can't do it, and by
definition any script run from the script menu manually has Entourage in the
front ('activated'), unless you're trying to run it from a Schedule
automatically where it may be in the background, so you might as well just
keep it simple:

tell application "Microsoft Entourage"
    activate -- probably not needed
    puppet menu {"View", "Next"}
end tell


-- 
Paul Berkowitz


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

Reply via email to