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

  1. #
  2. # Example 39-1
  3. # Resources for reverse video.
  4. #
  5.  
  6. proc ReverseVideo {} {
  7.     option add *Foreground white
  8.     option add *Background black
  9. }
  10.  
  11.  
  12.