I have an OptionMenu in TKinter in Python which is a big list, when I press the letter G for example it does not direct me to the elements with the letter G and also does not allow the use of pageUp and pageDown. Is there a way to make it work like this? Or some other kind of OptionMenu in Tkinter that allows these functions? Using the mouse scroll for this would be a good alternative as well.
My OptionMenu:
ent7 = tk.OptionMenu(janela,EntradaEnergia, *energias)