home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / hyperhelp < prev    next >
Encoding:
Text File  |  2003-09-01  |  498 b   |  15 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: hyperhelp in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. option add *textBackground seashell
  7.  
  8. button .push -text "Help..." -command {
  9.     set win [iwidgets::hyperhelp .#auto -title "Hyperhelp demo" -modality none \
  10.         -topics {demo} -helpdir [file join ${iwidgets::library} demos]]
  11.     $win showtopic demo
  12.     $win activate
  13. }
  14. pack .push
  15.