home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
mac
/
exsource.old
/
34_4.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
208b
|
13 lines
#
# Example 34-4
# Delayed creation of embedded widgets.
#
$t window create end -create [list MakeGoBack $t]
proc MakeGoBack { t } {
button $t.goback -text "Go to Line 1" \
-command [list $t see 1.0]
}