home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 June
/
PCWorld_2005-06_cd.bin
/
software
/
vyzkuste
/
firewally
/
firewally.exe
/
framework-2.3.exe
/
hyperhelp
< prev
next >
Wrap
Text File
|
2003-09-01
|
498b
|
15 lines
# ----------------------------------------------------------------------
# DEMO: hyperhelp in [incr Widgets]
# ----------------------------------------------------------------------
package require Iwidgets 4.0
option add *textBackground seashell
button .push -text "Help..." -command {
set win [iwidgets::hyperhelp .#auto -title "Hyperhelp demo" -modality none \
-topics {demo} -helpdir [file join ${iwidgets::library} demos]]
$win showtopic demo
$win activate
}
pack .push