home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 25_1.tcl < prev    next >
Text File  |  2003-04-15  |  213b  |  13 lines

  1. #
  2. # Example 25-1
  3. # A basic grid.
  4. #
  5.  
  6. foreach color {red orange yellow green blue purple} {
  7.     label .l$color -text $color -bg white
  8.     frame .f$color -background $color -width 100 -height 2
  9.     grid .l$color .f$color
  10. }
  11.  
  12.  
  13.