[Tkinter-discuss] ttk.Label unicode characters

2019-01-20 Thread Ben
row=0, column=0) root.mainloop() And the exception: _tkinter.TclError: character U+1d306 is above the range (U+-U+) allowed by Tcl System: Linux, Python 3.6.7, Tk 8.6 Is there anything I can do to be able to display that character? Thanks for any

Re: [Tkinter-discuss] ttk.Label unicode characters

2019-01-21 Thread Ben
06 String' #l.configure(text=text) # Result: _tkinter.TclError: character U+1d306 is above the range (U+-U+) allowed by Tcl #l.configure(text=text.encode('utf8')) # Result: no exception, but wrong characters show up l.tk.eval(l._w + f' configu

[Tkinter-discuss] How to distinguish canvas items?

2009-04-19 Thread Ben Koopmanschap
RENT tag is applied to the object the cursor is over. # this happens automatically. self.draw.itemconfig(CURRENT, fill="red") But what I want to know is how the individual ovals can distinguish from each other, can anyone please tell me how the value (in this case

[Tkinter-discuss] How to distinguish canvas items (2)

2009-04-19 Thread Ben Koopmanschap
it works very well! Hope this will others pointing in the right direction! With regards, - Ben ___ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss