Thanks for the reply.
No, I know how to get it when an menuItem is clicked.
I need it when the menu itself is clicked.
kc106_2005-pythoncard@[...].com wrote:
> Hi list,
>
> I am not receiving any event when clicking on the
menu
> bar.
>
> Is there a way to do that?
>
> Thanks,
>
> --
>
> John Hen
Is this what you mean?
-Cullen Newsom
def on_doHelpAbout_command(self, event):
self.addConsoleText("Add an About Box
Someday.")
{'type':'Menu',
'name':'menuHelp',
'label':'&Help',
'items': [
{'type':'MenuItem',
'name':'menuHelpAbout',
'label':'&About ...',
'command':'doHelpAbout',
},
--
John Henry
|