home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / Snack / MinSect.tcl < prev    next >
Encoding:
Text File  |  2001-10-22  |  302 b   |  14 lines

  1. #!/bin/sh
  2. # the next line restarts using wish \
  3. exec wish8.3 "$0" "$@"
  4.  
  5. package require -exact snack 2.1
  6.  
  7. pack [canvas .c -width 300 -height 300]
  8.  
  9. snack::sound s -load ex1.wav
  10.  
  11. .c create section 0 0 -sound s -start 6000 -end 6100 -height 300 -width 300
  12.  
  13. pack [button .bClose -text Close -command exit]
  14.