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

2019-01-21 Thread Ben
On Mon, Jan 21, 2019, at 7:47 AM, Michael Lange wrote: > Hi again, > > sorry for my somewhat disjointed replies :) > > On Sun, 20 Jan 2019 20:30:35 +0100 > Michael Lange wrote: > > (...) > > l = ttk.Label(root) > > l.grid() > > l.tk.eval(l._w + ' configure -text "Test \U0001d306 String"') > >

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

2019-01-21 Thread Michael Lange
Hi again, sorry for my somewhat disjointed replies :) On Sun, 20 Jan 2019 20:30:35 +0100 Michael Lange wrote: (...) > l = ttk.Label(root) > l.grid() > l.tk.eval(l._w + ' configure -text "Test \U0001d306 String"') > > there is actually some character displayed which looks similar to this > one:

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

2019-01-20 Thread Michael Lange
Ooops, looks like I might need to correct myself. On Sun, 20 Jan 2019 20:06:18 +0100 Michael Lange wrote: (...) > according to > https://groups.google.com/forum/#!topic/comp.lang.tcl/OJqYYzCgKQo > there is some work in progress with Tcl, otoh even if you install the > latest Tcl/Tk 8.7 it might

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

2019-01-20 Thread Michael Lange
Hi, On Sat, 19 Jan 2019 20:07:07 -0500 Ben wrote: > Hi, > > Is there any way to make a Label display every Unicode character, or > are we just stuck until Tcl/Tk fully supports all of unicode? > > Here's my example code: > import tkinter as tk > from tkinter import ttk > root = tk.Tk() >