From: Hidetoshi NAGAI Date: 2005-07-03T22:43:21+09:00 Subject: Re: tkextlib and Unicode From: "Axel" Subject: tkextlib and Unicode Date: Sun, 3 Jul 2005 19:10:45 +0900 Message-ID: <1120385246.207588.51970@o13g2000cwo.googlegroups.com> > I get the correct "text" in the text area and the label. But the combo > box seems to show me the raw UTF-8 bytes. Any fix for that? I'm very sorry. That is a bug on converting from an array of UTF-8 strings to a Tcl's list string. I'll fix the bug later. To avoid the problem temporarily, for example, replace the following ------------------------------------------------------- cb.configure('values', [u_str1, u_str2, ... ]) ------------------------------------------------------- to ------------------------------------------------------- cb.configure('values', Tk::UTF8_String(TkComm.array2tk_list([u_str1, u_str2, ... ]))) ------------------------------------------------------- -- Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)