When opening an existing project I observe the following
1) An extra toplevel named vt?
2) Occasionally I get a background error
invalid command name ""
while executing
"$vTcl(w,widget) configure -cursor $vTcl(cursor,last)"
(procedure "vTcl:bind_release" line 1)
invoked from within
"vTcl:bind_release 645 207"
(command bound to event)
3) The tk file dialogs don't work too well. Initfile seems to contain
only a directory name. I made the following changes to filedlg.tcl
if {$tk_version >= 4.2 && !($tcl_platform(platform) == "windows" &&
! if {[file isdir $initfile]} {
! set initfile {}
! }
switch $mode {
open {
set file [tk_getOpenFile -defaultextension .tcl \
! -initialdir [pwd] -initialfile [file tail
$initfile]]
}
save {
set file [tk_getSaveFile -defaultextension .tcl \
! -initialdir [pwd] -initialfile [file tail
$initfile]]
}
return $file
--
Robin Becker