Hiding a menu item in JMP Standard only
I have an addin where I'd like to show a menu item only if JMP Pro is being used. Is there something I can include in my addin.jmpcust to do that? Say I have this command in my addin.jmpcust:<jm:command> <jm:name>PRO ONLY</jm:name> <jm:caption>Pro Only</jm:caption> <jm:action type="text">show("Do something that requires JMP PRO")</jm:action> <jm:icon type="none"></jm:icon> </jm:command>Rig...