Re: Select item# from the Special Menu
Re: Select item# from the Special Menu
- Subject: Re: Select item# from the Special Menu
- From: JJ <email@hidden>
- Date: Sat, 20 Oct 2001 11:29:00 +0200
>
Is there a way using Applescript to select an item from the Special Menu?
>
>
For example, I want the script to go to the Special Menu and Restart - but
>
not using the Finder "Restart", rather to select to do what item #6 happens
>
to be under my Special Menu. (We have some security software that does a
>
few things at the Restart Menu choice that a Restart command seems to
>
bypass.)
>
>
Thank you,
>
>
Jon Mauch
Akua Sweets (script addition):
tell application "Finder"
activate -- obligatory
puppet menu {"Special", "Restart"}
end tell
__________________________
Menu Events (INIT & script addition):
tell application "Finder"
activate -- obligatory
Select Menu Item menu title "Special" menu item text "Restart"
end tell
__________________________
& Prefab Player (appe):
tell app "Finder" to activate
tell application "PreFab Player"
do menu menu item "Restart" of menu "Special"
end tell
JJ