home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / IWidgets / feedback < prev    next >
Encoding:
Text File  |  2001-10-22  |  496 b   |  19 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: feedback in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. . configure -background white
  7.  
  8. iwidgets::feedback .fb -labeltext "Status                    " -steps 22
  9. pack .fb -padx 4 -pady 4
  10.  
  11. button .go -text "Go" -command {
  12.     .fb reset
  13.     for {set i 0} {$i < 22} {incr i} {
  14.         .fb step
  15.         after 100
  16.     }
  17. }
  18. pack .go -padx 4 -pady 4
  19.