Dec. 5, 2017
5:12 p.m.
Hi, To implement a context menu item. I have implemented a new class: -=-=-=- CmdCommand subclass: #ClyHelloCommand instanceVariableNames: '' classVariableNames: '' package: 'Calypso-Extensionsâ -=-=-=- with methods: -=-=-=-=- ClyHelloCommand class >> #systemBrowserMenuActivator <commandActivator> ^CmdContextMenuCommandActivator byRootGroupItemFor: ClyVariableSystemBrowserContext ClyHelloCommand >> # defaultMenuItemName ^'Say Helloâ ClyHelloCommand >> # execute self inform: 'Hello' -=-=-=-=- But it does not display in the context menu. I expect it next to âGenerate accessorsâ as I took this command as an example. What do I miss? Thanks, Juraj