home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-24 | 1.5 KB | 37 lines | [TEXT/ToyS] |
- set dialogResult to display dialog ¬
- "Which application?" default answer "" buttons {"Cancel", "Choose…", "OK"} default button "OK"
- if button returned of dialogResult is "OK" then
- set targetApplication to application (text returned of dialogResult)
- else
- set targetApplication to choose application
- end if
-
- tell targetApplication
- try
- with timeout of 30 seconds -- some applications won't respond to Menu events
- set menuListInfo to Query Menu List
- end timeout
- on error errorString number errorNumber
- if errorNumber is -126 then -- dsMBarNFnd
- error "Sorry, that program does not have a menu bar. It may be background-only." number -126
- else
- error errorString number errorNumber
- end if
- end try
- if (count of menuListInfo) is greater than 0 then
- set menuListText to menu title of item 1 of menuListInfo
- repeat with menuIndex from 2 to count of menuListInfo
- set menuListText to menuListText & ", " & menu title of item menuIndex of menuListInfo
- end repeat
- tell me to display dialog "The menu titles are " & menuListText & "."
- end if
- set menuInfo to Query Menu menu title "File"
- repeat with menuItemID from 1 to count of menuInfo
- set menuItemInfo to item menuItemID of menuInfo
- if menu item enabled of menuItemInfo then
- tell me to display dialog "File menu item “" & (menu item text of menuItemInfo) & "” is enabled."
- end if
- end repeat
- Select Menu Item menu title "File" menu item text "Quit" with option key -- Option-Quit
- end tell
- display dialog "The application has quit. Goodbye!"