home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / send / programs / tkSend4 < prev    next >
Encoding:
Text File  |  1993-11-15  |  238 b   |  13 lines

  1. #!/pub/local/bin/wish -f
  2.  
  3. button .button -command incrementLabel -text 1
  4. pack .button -side left
  5.  
  6. proc incrementLabel {} {
  7.   set text [.button configure -text]
  8.   set value [lindex $text 4]
  9.   incr value
  10.   .button configure -text $value
  11. }
  12.  
  13.