[Tutor] Tamil Language support for Tkinter

2008-02-22 Thread goldgod a
Hi, I need the Tamil language support for Tkinter. How can I do that? I searched a lot I cannot find any solutions. Any idea to create a add ons for Tamil support. I am using "Debian -Sid(unstable)", Python 2.4, Tcl/Tk 8.4. -- Thanks & Regards, goldgod

[Tutor] how to parse a multiple character words from plaintext

2008-02-22 Thread John Gunderman
I am looking to parse a plaintext from a document. However, I am confused about the actual methodology of it. This is because some of the words will be multiple digits or characters. However, I don't know the length of the words before the parse. Is there a way to somehow have open() grab someth

Re: [Tutor] how to display terminal messages indialog windowusingtkinter

2008-02-22 Thread Kent Johnson
Alan Gauld wrote: > I don't know of any way to turn vanilla print statements into GUI > visible > strings. Even redirecting stdout would require the creation of some > kind > of custom widget that wrote to the GUI. (But I'd love to be wrong! :-) OK I'll bite. You don't need a custom GUI widget,

Re: [Tutor] how to display terminal messages indialog windowusingtkinter

2008-02-22 Thread Alan Gauld
"Kent Johnson" <[EMAIL PROTECTED]> wrote >>> If you literally want print statements to appear in a dialog then >>> no, >>> you can't do that (so far as I know!). But if you want the Tkinter >> >> Alan??? Redirect standard output. It doesn't have to be a file >> object. It >> can be any object wi

Re: [Tutor] how to display terminal messages in dialog windowusingtkinter

2008-02-22 Thread Kent Johnson
Tiger12506 wrote: >> If you literally want print statements to appear in a dialog then no, >> you can't do that (so far as I know!). But if you want the Tkinter > > Alan??? Redirect standard output. It doesn't have to be a file object. It > can be any object with a write method. Another way to

Re: [Tutor] how to display terminal messages in dialog windowusingtkinter

2008-02-22 Thread Tiger12506
> If you literally want print statements to appear in a dialog then no, > you can't do that (so far as I know!). But if you want the Tkinter Alan??? Redirect standard output. It doesn't have to be a file object. It can be any object with a write method. _