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

  1. #
  2. # Example 41-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.