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

  1. #
  2. # Example 34-4
  3. # Delayed creation of embedded widgets.
  4. #
  5.  
  6. $t window create end -create [list MakeGoBack $t]
  7. proc MakeGoBack { t } {
  8.     button $t.goback -text "Go to Line 1" \
  9.         -command [list $t see 1.0]
  10. }
  11.  
  12.  
  13.