Is it possible to create a combobox that updates with the closest item in its list as you type into it?
For example:
A = ttk.Combobox()
A['values'] = ['Chris', 'Jane', 'Ben', 'Megan']
Then you type “Chr” into the combobox, I want it to automatically fill in “Chris”.
The tkinter wiki contains code for a auto-completion textbox, but since you want a combobox, you can use this code (you’re looking for
AutocompleteCombobox).