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

  1. #
  2. # Example 30-6
  3. # The message widget formats long lines of text.
  4. #
  5.  
  6. message .msg -justify center -text "This is a very long text\
  7.     line that will be broken into many lines by the\
  8.     message widget"
  9. pack .msg
  10.  
  11.  
  12.