It just seems to be Tcl/Tk. Even the demo widgets are scrsmbled. All the other apps and GUIs seem fine. (I didn't know there was a tcl chell. Tell me more.)
Scott E.
Our SAs just rebuilt all of our SunOS and Linux boxes. All the TCL tools I had developed will come up but the font is the dingbat font set. Unless I explicitly set each button, label, radiobutton, etc. with "-font = $font" (which I defint at the top to "helvetica 9"), I get the funky characters...
BOB!!! You're my new hero. You were all over the answer like fat on a mother-in-law. You're last comment put me over the top!
I appreciate all your help and the quick responses.
Scott E.
Here's what I have now...
set myFile [open namefile r]
set namelist [split [read $myFile] \n]
close $myFile
frame .one
foreach person $name_list {
set lower [string tolower $person]
checkbutton .one.$lower -text $person -variable $person
pack .one.$lower -side top -anchor w
}
pack...
between the time I posted and getting your response, I figured out how to read i n the list file. But I appreciate your help anyway.
The good news is that the display is presented, it's correct, and each person has a checkbox by their name.
But... When I select a few names and hit "Do it" I...
I'm fairly new to tcl scripting and could use a little help. I have a simple list file that will be of unknown size (somewhere between 10 to 20 names). I'd like to create a gui that has a checkbutton for each name in the list and a single action button that will do something for all the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.