Re: python+windows/linux -> write stdout text to always on top text?

2005-05-04 Thread Philippe C. Martin
I understand you wish to reroute stdout to some object than can write to a window - correct ? If so, this is what I do with tkinter class SC_Log_Stdout: #*** def __init__(self, p_log_text): self.__m_log_text

Re: python+windows/linux -> write stdout text to always on top text?

2005-05-04 Thread flamesrock
hmm... I guess its not possible as I feared :( thanks anyways -- http://mail.python.org/mailman/listinfo/python-list

Re: python+windows/linux -> write stdout text to always on top text?

2005-05-03 Thread Swaroop C H
On 3 May 2005 09:41:37 -0700, flamesrock <[EMAIL PROTECTED]> wrote: > I'm writing a multiplayer component to an existing closed source game, > and I'd like users to be able to see whats going on in the chat while > playing the game. > Is it possible? I do not have much knowledge in this area but y

Re: python+windows/linux -> write stdout text to always on top text?

2005-05-03 Thread flamesrock
I'm writing a multiplayer component to an existing closed source game, and I'd like users to be able to see whats going on in the chat while playing the game. Is it possible? -- http://mail.python.org/mailman/listinfo/python-list

Re: python+windows/linux -> write stdout text to always on top text?

2005-05-03 Thread Swaroop C H
On 2 May 2005 13:14:02 -0700, flamesrock <[EMAIL PROTECTED]> wrote: > I'm curious if theres a way in python to write stdout text to the > screen (ie top right) the way they do in some FPS games, so that its > always on top, in an invisible window of some set dimensions. No matter > what program is

python+windows/linux -> write stdout text to always on top text?

2005-05-02 Thread flamesrock
Hi, I'm curious if theres a way in python to write stdout text to the screen (ie top right) the way they do in some FPS games, so that its always on top, in an invisible window of some set dimensions. No matter what program is on top. Is there a way to make it cross platform? I've looked but not