0

Creating a Tk app results in a menu item "Run Widget Demo" (File > Run Widget Demo). I can't seem to find docs on how to remove this menu item. Any help is appreciated.

Thanks!

vpaterno
  • 442
  • 3
  • 14

1 Answers1

0

Accordingly to the documentation you can use:

my_menu_object.delete(index1, index2=None)
Vicent
  • 5,322
  • 2
  • 28
  • 36
  • Thanks Vicent, it appears that the menu I was getting was a default menu shown when one isn't created. Your answer led me to create my own men, removing all of the default menus. – vpaterno Oct 20 '12 at 20:09