Re: Quick and dirty dialogs?

2005-05-02 Thread Harlin Seritt
Try EasyDialog: http://www.talkaboutprogramming.com/group/comp.lang.python/messages/314003.html It should also be on Vaults of Parnassus. -- http://mail.python.org/mailman/listinfo/python-list

Re: Quick and dirty dialogs?

2005-05-02 Thread andy
Stopped being lazy and found the TK answer myself. (it needs some extra stuff installed. see the macpython site's faq for info). Still be interested to know if there is a sem-cross-platform solution to simple dialogs that doesn't need TK... -- http://mail.python.org/mailman/listinfo/python-list

Re: Quick and dirty dialogs?

2005-05-02 Thread andy
By 'not needing TK' I meant 2 things: 1. Is there a one liner/no brainer as I'm short on time and, yes, didn't want to start fiddling with anything new (normally I'd leap at the opportunity ;-) 2. I couldn't remember if TK is installed by default on a vanilla OS X install. My script is going to h

Re: Quick and dirty dialogs?

2005-05-02 Thread Robert D. Young
I use quick-and-dirty code like this: # Get source directory and text file Root = Tkinter.Tk() Root.title(programname) srcdir = tkFileDialog.ask

RE: Quick and dirty dialogs?

2005-05-02 Thread Robert Brewer
[EMAIL PROTECTED] wrote: > What's the easiest way for a script to throw up simple dialogs such as > file select and alerts? > > I thought there was something in the standard library that didn't need > TK and was cross-platform but I can't seem to get my Google-fu working > well enough to find it.