Run the following script, then press "alt-f"
and a popup menu should appair, but it doesn't work in
win32.
It works in linux :)
Thanks.
lz_ufo@tin.it
######code start here#####
frame .f
pack .f -fill x
menubutton .f.mb -text "File" -menu .f.mb.m \
-underline 0
pack .f.mb -side left
set m [menu .f.mb.m -tearoff 0 -type menubar]
foreach key [list opt0 opt1 opt2] {
$m add command -label $key -underline 3
}
focus -force .f
#########code end here#######
Logged In: NO
Maybe the problem is
focus -force .f.mb ???
not
focus -force .f.m
Thanks,
lz_ufo@tin.it