Kent Johnson wrote: > LittlePython wrote: > > Is there an equivalent to a msgbox() or wscript.echo (via wcsript) . I > > would like to call this instead of print (to the screen) . I would like > > to write a simple script that is not an event drive gui but calls input > > boxes, message boxes, or maybe even a file open browser box as well? > > Take a look at EasyGUI: > http://www.ferg.org/easygui/ > > Kent It's also possible to something like that with wxPython. Try: import wx app = wx.PySimpleApp() dlg = wx.TextEntryDialog(None, 'Enter value', 'Title', '') if dlg.ShowModal() == wx.ID_OK: val = dlg.GetValue() # this line should be indented dlg.Destroy() print "you have entered %s" % val
-- http://mail.python.org/mailman/listinfo/python-list