home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / MacHacksBug / Python 1.5.2c1 / Mac / IDE scripts / Widget demos / ModalDialog.py < prev    next >
Encoding:
Text File  |  2000-06-23  |  176 b   |  11 lines

  1. import W
  2. import Windows
  3.  
  4.  
  5. w = W.ModalDialog((100, 100))
  6.  
  7. w.ed = W.EditText((10, 10, 80, 50))
  8. w.ok = W.Button((10, 70, 80, 16), "Ok", w.close)
  9. w.setdefaultbutton(w.ok)
  10. w.open()
  11.