[Pythonmac-SIG] Getting control over the Apple menu

2012-10-31 Thread wrw
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

Re: [Pythonmac-SIG] Getting control over the Apple menu

2012-10-31 Thread Kevin Walzer
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

Re: [Pythonmac-SIG] Getting control over the Apple menu

2012-10-31 Thread wrw
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 >

Re: [Pythonmac-SIG] Getting control over the Apple menu

2012-10-31 Thread Ned Deily
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') >