I have searched without success for a way to format the text in a Tkinter OptionMenu List. Specifically, I want to use some subscripted letters. Something like:
from Tkinter import *
root = Tk()
types =
type = StringVar()
typewidget = OptionMenu(root, type, *types)
typewidget.grid()
I need specifically the 'd' and 'oc' subscripted. I am aware that some characters are available in unicode (for example subscript 'o') but 'c' and 'd' are not.