in reply to Re^2: Valid chars for Tk Label
in thread Valid chars for Tk Label

Good thinking! Problem for me is I'm trying to do a "standard" looking MRU list in the File menu, including separators, and need to be able to modify the group of menu entries representing the MRU items as users open files, preferably without using magic numbers.

I've Changed my MRU reordering function to use ->entryreconfigure as suggested and this certainly fixes the problem. Finding the index in the menu where the MRU starts without resorting to magic numbers was not possible, but as the "Save As..." item is followed by a separator, then the first MRU entry, I can get the index for "Save As...", and add 2 to it for the MRU start. I normally hate manifest constants like this, but in this case, I can live with it. Thanks for the suggestion!