Re: [Tutor] easygui question, again

2007-06-09 Thread Rafael Bejarano
I wrote the script in the Smultron test editor. To open it, I've first been selecting it and then selecting python launcher from the "Open with" submenu, whicch is under the "Open" menu. Opening the script file in this way brings up the terminal window. Here is the output I get. Last login

Re: [Tutor] easygui question, again

2007-06-09 Thread Rafael Bejarano
Thanks for reminding me to post my code. Here it is. #easygui test program import easygui import sys msg = "What do you prefer?" choices = ["$50.00 now", "$100.00 in 6 months"] choice = easygui.buttonbox(msg, "", choices) print choice On Jun 9, 2007, at 2:28 AM, Alan Gauld wrote: > > "Rafael Bej

Re: [Tutor] Calculator research

2007-06-09 Thread Adam Urbas
Ok then Alan, I'll be sure to check that out. I wasn't sure that what a GUI was so now I know. I haven't been able to mess around with python for a while, so I haven't gotten any further on your tutorial. The problem I had before was that I was really excited to create something original or bette

Re: [Tutor] easygui question, again

2007-06-09 Thread Kent Johnson
Alan Gauld wrote: > "Rafael Bejarano" <[EMAIL PROTECTED]> wrote > >> this list, one should re-post a question that has not been >> adequately >> addressed in a day or so since the first post. As this is my >> situation, I would like to ask once more for your assistance > > I thought we were wait

Re: [Tutor] easygui question, again

2007-06-09 Thread Alan Gauld
"Rafael Bejarano" <[EMAIL PROTECTED]> wrote > this list, one should re-post a question that has not been > adequately > addressed in a day or so since the first post. As this is my > situation, I would like to ask once more for your assistance I thought we were waiting for you to post your code