Re: [Tkinter-discuss] Event debugger

2015-01-05 Thread Vasilis Vlachoudis
Happy new year Mattias, Is it possible to use xev to monitor another window's events? V. From: Tkinter-discuss [tkinter-discuss-bounces+vasilis.vlachoudis=cern...@python.org] on behalf of mkieve...@tlink.de [mkieve...@tlink.de] Sent: 04 January 2015 13:

Re: [Tkinter-discuss] Event debugger

2015-01-05 Thread Michael Lange
Hi Vasilis, On Mon, 5 Jan 2015 10:44:22 + Vasilis Vlachoudis wrote: > Happy new year Mattias, > > Is it possible to use xev to monitor another window's events? you can use this simple technique for that: import Tkinter from subprocess import Popen, PIPE import fcntl import os root = Tkin

Re: [Tkinter-discuss] Event debugger

2015-01-05 Thread Vasilis Vlachoudis
Brilliant! This can be good to know V. From: Tkinter-discuss [tkinter-discuss-bounces+vasilis.vlachoudis=cern...@python.org] on behalf of Michael Lange [klappn...@web.de] Sent: 05 January 2015 13:00 To: tkinter-discuss@python.org Subject: Re: [Tkinter-dis

[Tkinter-discuss] Help with finding tutors for Python, Linux, R, Perl, Octave, MATLAB and/or Cytoscape for yeast microarray analysis, next generation sequencing and constructing gene interaction netwo

2015-01-05 Thread thomas hahn
*Help with finding tutors for Python, Linux, R, Perl, Octave, MATLAB and/or Cytoscape for yeast microarray analysis, next generation sequencing and constructing gene interaction networks* Hi I am a visually impaired bioinformatics graduate student using microarray data for my master’s thesis

[Tkinter-discuss] Help with finding tutors for Python, Linux, R, Perl, Octave, MATLAB and/or Cytoscape for yeast microarray analysis, next generation sequencing and constructing gene interaction netwo

2015-01-05 Thread thomas hahn
*Help with finding tutors for Python, Linux, R, Perl, Octave, MATLAB and/or Cytoscape for yeast microarray analysis, next generation sequencing and constructing gene interaction networks* Hi I am a visually impaired bioinformatics graduate student using microarray data for my master’s thesis

Re: [Tkinter-discuss] Event debugger

2015-01-05 Thread mkieverpy
Hi Vasilis and Michael, I thought you could use xev just by starting it in another shell with "xev -id ". Or do you lose some info by running it this way? (I mean even more than by the other heavy restrictions - they seem to make xev useless for event debugging. I'll have to look at the other t

Re: [Tkinter-discuss] Event debugger

2015-01-05 Thread Michael Lange
Hi, On Mon, 05 Jan 2015 16:57:37 - mkieve...@tlink.de wrote: > > Hi Vasilis and Michael, > > I thought you could use xev just by starting it > in another shell with "xev -id ". > Or do you lose some info by running it this way? I think this is more or less the exact same as Popen does. >