Is it possible to deactivate menu items such as "preferences", "about", "Hide..." etc. on Mac?
And, is there a way to display the system menu (preferences, etc.) in a different language?
How to disable / translate system menu (Preferences, Hide,...)
Re: How to disable / translate system menu (Preferences, Hide,...)
You may try my old example from 2015 which demonstrates how to display a German system menu.flashbob wrote: Sat Sep 07, 2024 12:25 pm And, is there a way to display the system menu (preferences, etc.) in a different language?
Beginning with MacOS 'Ventura' Apple has renamed "Preferences" to "Settings". Therefore in MacOS 'Ventura' and newer you have to change the line
Code: Select all
ElseIf Left(SubmenuTitle, 11) = "Preferences"
Code: Select all
ElseIf Left(SubmenuTitle, 8) = "Settings"
Re: How to disable / translate system menu (Preferences, Hide,...)
Great, thank you very much, that helps.
If we need Cocoa for something like that in PB, it's really not implemented well ...
If we need Cocoa for something like that in PB, it's really not implemented well ...