Re: tkinter menu bar problem

2005-02-10 Thread John Pote
Thanks for the reply. I now have radio buttons (with a nice tick!) on my menu that can be greyed out when disabled. I can also change the background colour of the individual buttons as you suggest. What I cannot do is change the background colour of the menu bar itself. The following code is ac

Re: tkinter menu bar problem

2005-02-09 Thread Eric Brunel
On Wed, 09 Feb 2005 11:35:40 GMT, John Pote <[EMAIL PROTECTED]> wrote: I have a menu bar in a top level window as follows [snip code] Q1 Cannot find a way of changing the menu bars background colour. When colour options are accepted they seem to be ignored. Is this a native look and feel chara

Re: tkinter menu bar problem

2005-02-09 Thread Eric Brunel
On Wed, 09 Feb 2005 11:35:40 GMT, John Pote <[EMAIL PROTECTED]> wrote: I have a menu bar in a top level window as follows [snip code] Q1 Cannot find a way of changing the menu bars background colour. When colour options are accepted they seem to be ignored. Is this a native look and feel chara

tkinter menu bar problem

2005-02-09 Thread John Pote
I have a menu bar in a top level window as follows menuBar = Menu(rootWin) menuBar.add_command( label='Quit', command=rootWin.quit) configMenu = Menu(menuBar, tearoff=0) configMenu.add_command(label='Left Device Raw', command=setLeftRaw) configMenu.add_command(label='Right Device Raw', comma