Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-18 Thread Alex Tweedly
Louis Pecora wrote: >Christopher Barker wrote: > > >>Louis Pecora wrote: >> >> >>>I really do numerical calcs, but occasionally need a simple GUI >>>dialog or open a window to plot in (very simple) >>> >>> >>Take a look at wxmpl. It helps you embed a matplotlib window in a >>wxPython

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-18 Thread Louis Pecora
Christopher Barker wrote: > Louis Pecora wrote: >> I really do numerical calcs, but occasionally need a simple GUI >> dialog or open a window to plot in (very simple) > > Take a look at wxmpl. It helps you embed a matplotlib window in a > wxPython app. It's pretty handy, once you get the hang of

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-18 Thread Christopher Barker
Louis Pecora wrote: > I really do numerical calcs, but occasionally > need a simple GUI dialog or open a window to plot in (very simple) Take a look at wxmpl. It helps you embed a matplotlib window in a wxPython app. It's pretty handy, once you get the hang of wxPython. Also, depending on what

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-13 Thread Louis Pecora
Alex Tweedly wrote: > > I'm pretty clueless about how everything (including the whole > "framework" thing) fits together on OS X, but I'd suggest trying this ... > > run python, and do > >> import sys >> print sys.path > > and see if it contains the PythonCard directory as you expect it. If > it

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-13 Thread Alex Tweedly
Louis Pecora wrote: > Alex Tweedly wrote: > >> >> You should also look, then, at Pythoncard ( www.pythoncard.org ) >> Excellent for simple UIs, simple for excellent UIs :-) >> > Got it, ran sudo python setup.py install, seemed to go OK. Ran > minimaltest and it could not find PythonCard module.

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-13 Thread Louis Pecora
Alex Tweedly wrote: > > You should also look, then, at Pythoncard ( www.pythoncard.org ) > Excellent for simple UIs, simple for excellent UIs :-) > Got it, ran sudo python setup.py install, seemed to go OK. Ran minimaltest and it could not find PythonCard module. I have a path to the PythonCard

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Alex Tweedly
Louis Pecora wrote: > Alex Tweedly wrote: > >> >> > > Just looked it over. Seems like the right level for what I do. But > is it still under development? Looked stagnent to me. It's under development - 0.8.2 will be out any day now, and contains a fair number of enhancements, including so

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Louis Pecora
Alex Tweedly wrote: > Louis Pecora wrote: > > >> Thanks for the link and the hint on boa. I've heard of the latter, but >> >> never looked into it. I really do numerical calcs, but occasionally >> need a simple GUI dialog or open a window to plot in (very simple), but >> who knows, boa might

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Alex Tweedly
Louis Pecora wrote: > Thanks for the link and the hint on boa. I've heard of the latter, but > >never looked into it. I really do numerical calcs, but occasionally >need a simple GUI dialog or open a window to plot in (very simple), but >who knows, boa might be the ticket. Thanks, again. > >

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Louis Pecora
Stewart Midwinter wrote: > > thank you Charles, thank you Saggau (and thank you Daniel for posing > the question). I'm also new to wxPython, though I've been working > with Wax (a more pythonic layer on top of wxPython) for some months > now), and I also was having a devil of a time trying to deb

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Stewart Midwinter
> > From: Charles Hartman <[EMAIL PROTECTED]> > If I recall correctly, this syndrome is covered in the book. It > happens because the diagnostic's going to a window that closes when > the app does. Look up wx.App(redirect=True) in the index -- you can > write the diagnostic to a file and examine

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Charles Hartman
It occurs to me that if you added an OnExit() handler to your app -- any app that's giving quit-too-soon trouble. The handler could simply put up a wx.MessageBox, which gets an OK from the user. This would pause the app on the way out, and therefore permit the normal app output window (with

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Louis Pecora
Mark Thalman wrote: > Louis, > > If you don't need cross-platform compatibility, why not use EasyDialogs? > > http://python.org/doc/2.4.1/mac/module-EasyDialogs.html > Yes, I've messed with them a little. Really very nice ... and tempting. I'm on the fence. I got this wxPython book and it look

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Louis Pecora
Kevin Ollivier wrote: > Hi Louis, > > On Apr 11, 2006, at 2:43 PM, Louis Pecora wrote: > >> I bought the wxPython in Action book and started trying the simple >> examples in Chap. 1. One thing I have run into is rather >> disappointing. Many errors (e.g. I typed return true, instead of return >>

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Louis Pecora
Saggau wrote: > Charles is right: > http://www.wxpython.org/docs/api/wx.App-class.html > > Have you looked at boa-constructor on sourceforge? > boa-constructor.sourceforge.net > > I used to use it when I was a bigger-than-I-am-now linux geek and > found it

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-12 Thread Charles Hartman
(sorry -- I meant to post this to the list)Begin forwarded message:From: Charles Hartman <[EMAIL PROTECTED]>Date: April 12, 2006 7:23:20 AM EDTTo: Louis Pecora <[EMAIL PROTECTED]>Subject: Re: [Pythonmac-SIG] wxPython -- some disappointment using it. For some notes on errata in the bo

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Kevin Ollivier
Hi Louis, On Apr 11, 2006, at 2:43 PM, Louis Pecora wrote: > I bought the wxPython in Action book and started trying the simple > examples in Chap. 1. One thing I have run into is rather > disappointing. Many errors (e.g. I typed return true, instead of > return > True) do not give the belove

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Saggau
Charles is right:http://www.wxpython.org/docs/api/wx.App-class.htmlHave you looked at boa-constructor on sourceforge? boa-constructor.sourceforge.netI used to use it when I was a bigger-than-I-am-now linux geek and found it quite useful for building one-off gui toys.  I found the learning curve mor

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Charles Hartman
If I recall correctly, this syndrome is covered in the book. It happens because the diagnostic's going to a window that closes when the app does. Look up wx.App(redirect=True) in the index -- you can write the diagnostic to a file and examine it at leisure. Sorry, I'm doing this from memory

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Saggau
are you running your scripts with pythonw from the command line?On 4/11/06, Louis Pecora <[EMAIL PROTECTED] > wrote:I bought the wxPython in Action book and started trying the simple examples in Chap. 1.  One thing I have run into is ratherdisappointing.  Many errors (e.g. I typed return true, inst

Re: [Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Daniel Lord
Personally I am with Bill, I like Jython but it unfortunately has fallen way behind in Python versions. But it has teh advantage that Java is supported on all main 'cross' platforms. On Apr 11, 2006, at 14:43, Louis Pecora wrote: > I bought the wxPython in Action book and started trying the s

[Pythonmac-SIG] wxPython -- some disappointment using it.

2006-04-11 Thread Louis Pecora
I bought the wxPython in Action book and started trying the simple examples in Chap. 1. One thing I have run into is rather disappointing. Many errors (e.g. I typed return true, instead of return True) do not give the beloved Python tracback. That's one of the nice things that made me choose