It seems, that there is no property for the checked state of a menu item. Is there any other way to get this?
The checked state of menu item is presented not by some property but by value of attribute “AXMenuItemMarkChar”. It would be very helpful if you could declassify us the name of your menu item. To help you better.
Ahhhhh. I simply overlooked it. I was looking for a discription. But its simply the check.
so one can get it with
set b to value of attribute “AXMenuItemMarkChar” of menu item “Show Metrics” of menu “View” of menu bar 1
or as part of
set b to value of every attribute of menu item “Show Metrics” of menu “View” of menu bar 1
Thanks a lot!