我没有 Photoshop,但这适用于 Illustrator:
activate application "Adobe Illustrator"
tell application "System Events"
tell process "Adobe Illustrator CS5.1"
set xxx to name of every menu item of menu 1 of menu bar item "Window" of menu bar 1
end tell
end tell
要获取属性,您可以使用:
activate application "Adobe Illustrator"
tell application "System Events"
tell process "Adobe Illustrator CS5.1"
set xxx to value of attribute "AXMenuItemMarkChar" of menu item "tools" of menu 1 of menu bar item "Window" of menu bar 1
end tell
end tell
零场景:
activate application "Adobe Illustrator"
tell application "System Events"
tell process "Adobe Illustrator CS5.1"
set xxx to value of attribute "AXMenuItemMarkChar" of menu item "Brushes" of menu 1 of menu bar item "Window" of menu bar 1
try
xxx
on error
-- insert your code
beep 2
end try
end tell
end tell