Re: [Scidvspc-users] Export Current Game to HTML Error
Chess Database and Toolkit program
Brought to you by:
stevenaaus
|
From: Steven <ste...@ya...> - 2012-02-14 09:10:04
|
> Anyone has the same issue as mine? Always got error message when I
> try to export current game to HTML. No error exporting to PGN though.
> ....
> window name "space" already exists in parent
Yes - this is a bug.
To fix it, make these two changes to scid.gui (or tcl/end.tcl).
# Extra option for HTML format: diagram image set
if {$exportType == "HTML"} {
- label $w.o.space -text ""
+ label $w.o.space2 -text ""
label $w.o.hdiag -text "Diagram"
radiobutton $w.o.hb0 -text "bitmaps" \
-variable exportFlags(htmldiag) -value 0
radiobutton $w.o.hb1 -text "bitmaps2" \
-variable exportFlags(htmldiag) -value 1
label $w.o.hl0 -image htmldiag0
label $w.o.hl1 -image htmldiag1
- grid $w.o.space -row 8 -column 0
+ grid $w.o.space2 -row 8 -column 0
|