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

  1. #
  2. # Example 27-4
  3. # Positioning a window above a sibling with place.
  4. #
  5.  
  6. place $w -in $sibling -relx 0.5 -y -5 -anchor s \
  7.     -bordermode outside
  8.  
  9.  
  10.