【发布时间】:2013-11-23 20:23:07
【问题描述】:
我想知道如何在 applescript 上启用 About MyApplication 菜单栏项。这个我试过了
tell application "System Events"
tell process "MyApp"
set AboutApplication to {}
repeat with AboutApplication in AboutApplication
try
set frontmost to true
set AboutApplication to enabled of menu item "About MyApp" of menu "Object" of menu bar item "Object" of menu bar 1
if activeMenuItem is true then
end if
end try
end repeat
end tell
end tell
但我很确定它错了。
谁能告诉我如何启用它?
【问题讨论】:
标签: applescript