I'm slowly (VERY slowly) getting my arms wrapped around Tkinter and ttk (the
themed widgets), but I'm up against a brick wall with menus.
The problem is my "Application" menu (what I believe Tkinter still calls the
"Apple" menu, that being an OS9 hold-over according to Google). I've been all
o
On 10/31/12 5:48 PM, [email protected] wrote:
applemenu = Menu(menubar, tearoff = FALSE)
Add the apple name to the menu object, cf:
applemenu = Menu(menubar, tearoff = FALSE, name='apple')
That works for me.
--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
On Oct 31, 2012, at 9:11 PM, Kevin Walzer wrote:
> On 10/31/12 5:48 PM, [email protected] wrote:
>> applemenu = Menu(menubar, tearoff = FALSE)
>
> Add the apple name to the menu object, cf:
>
> applemenu = Menu(menubar, tearoff = FALSE, name='apple')
>
> That works for me.
>
> --
> Kevin Walzer
>
In article , [email protected]
wrote:
> On Oct 31, 2012, at 9:11 PM, Kevin Walzer wrote:
> > On 10/31/12 5:48 PM, [email protected] wrote:
> >> applemenu = Menu(menubar, tearoff = FALSE)
> >
> > Add the apple name to the menu object, cf:
> >
> > applemenu = Menu(menubar, tearoff = FALSE, name='apple')
>