Re: [Matplotlib-users] Bypass keyboard navigation

2010-07-28 Thread David Mashburn
Thanks so much guys! This finally worked! f=gcf() for i in f.canvas.callbacks.callbacks: if i=='key_press_event': f.canvas.mpl_disconnect(f.canvas.callbacks.callbacks[i].keys()[0]) Thanks! -David Aha! I thought you were using 1.0. For 1.0, these things are rc settings; I had n

Re: [Matplotlib-users] Bypass keyboard navigation

2010-07-26 Thread Eric Firing
On 07/26/2010 12:17 PM, David Mashburn wrote: > Ben and Eric, > > Thanks so much for your help! > > I'm trying to turn change some of the rcParams in my script... Here is a > test of what happens: > > import matplotlib > matplotlib.rcParams['keymap.fullscreen']='' > > Traceback (most recent call la

Re: [Matplotlib-users] Bypass keyboard navigation

2010-07-26 Thread David Mashburn
Ben and Eric, Thanks so much for your help! I'm trying to turn change some of the rcParams in my script... Here is a test of what happens: import matplotlib matplotlib.rcParams['keymap.fullscreen']='' Traceback (most recent call last): File "", line 1, in File "/usr/lib/pymodules/python2.

Re: [Matplotlib-users] Bypass keyboard navigation

2010-07-26 Thread Eric Firing
On 07/26/2010 10:18 AM, Benjamin Root wrote: > On Mon, Jul 26, 2010 at 3:09 PM, David Mashburn > mailto:david.n.mashb...@gmail.com>> wrote: > > Hello! > > My name is David Mashburn, and I have been a very happy user of > matplotlib for almost 5 years now, so let me start by saying thank

Re: [Matplotlib-users] Bypass keyboard navigation

2010-07-26 Thread Benjamin Root
On Mon, Jul 26, 2010 at 3:09 PM, David Mashburn wrote: > Hello! > > My name is David Mashburn, and I have been a very happy user of > matplotlib for almost 5 years now, so let me start by saying thank you > for this wonderful piece of software! I has been a blessing to me! > > I am creating a pro

[Matplotlib-users] Bypass keyboard navigation

2010-07-26 Thread David Mashburn
Hello! My name is David Mashburn, and I have been a very happy user of matplotlib for almost 5 years now, so let me start by saying thank you for this wonderful piece of software! I has been a blessing to me! I am creating a program that performs actions based on key commands in matplotlib, and