Re: Inserting Unicode chars in Entry widget

2012-12-29 Thread Irmen de Jong
On 29-12-2012 18:23, Chris Angelico wrote: > On Sun, Dec 30, 2012 at 4:11 AM, Irmen de Jong wrote: >> b1=Button(f, text='char1', command=lambda b=1: insert_char(b)) >> b2=Button(f, text='char2', command=lambda b=2: insert_char(b)) >> ...etc.. >> >> def insert_char(b): >> if b==1: >> en

Re: Inserting Unicode chars in Entry widget

2012-12-29 Thread Chris Angelico
On Sun, Dec 30, 2012 at 4:11 AM, Irmen de Jong wrote: > b1=Button(f, text='char1', command=lambda b=1: insert_char(b)) > b2=Button(f, text='char2', command=lambda b=2: insert_char(b)) > ...etc.. > > def insert_char(b): > if b==1: > entrywidget.insert(0, u"\u20ac") # inserts € in the

Re: Inserting Unicode chars in Entry widget

2012-12-29 Thread Irmen de Jong
On 29-12-2012 17:43, Alan Graham wrote: > Hello Python experts, > > I want to insert Unicode chars in an Entry widget by pushing on buttons; > one for each Unicode character I need. I have made the Unicode buttons. > I just need a simple function that will send the Unicode character to > the Entry

Re: Inserting Unicode chars in Entry widget

2012-12-29 Thread Chris Angelico
On Sun, Dec 30, 2012 at 3:43 AM, Alan Graham wrote: > Hello Python experts, > > I want to insert Unicode chars in an Entry widget by pushing on buttons; > one for each Unicode character I need. I have made the Unicode buttons. > I just need a simple function that will send the Unicode character to

Inserting Unicode chars in Entry widget

2012-12-29 Thread Alan Graham
Hello Python experts, I want to insert Unicode chars in an Entry widget by pushing on buttons; one for each Unicode character I need. I have made the Unicode buttons. I just need a simple function that will send the Unicode character to the Entry widget. Is there a better approach? Alan -- http: