search for: updatetext

Displaying 3 results from an estimated 3 matches for "updatetext".

2007 May 22
0
font test does not go higher than 49 - centos 4 x86_64
...ript - ran by "wish -f file.tcl" When I run this script and move the slider bar at the bottom on centos 4 x86_64 I get increasing font sizes from 5 to 49. Anything 50 and after is all the same size. How do I get bigger fonts? THanks, Jerry -------------------------------------- proc updateText {args} { set text [.c1 find withtag text] foreach {name size type} [.c1 itemcget $text -font] {break} set font [list $name $::value $type] .c1 itemconfigure $text -font $font } set c [canvas .c1 -width 800 -height 600 -bg white] set s [scale .s1 -from 5 -to 200 -orient horizontal -...
2007 May 23
1
fonts on X and centos 4.4
...her than 50 it will not do. run the program as "wish -f file.tcl" Why can I not increase the font size - using the slider bar at the bottom to anything higher than 50??? Does this work for anyone else? Using xlsfonts there are sizes higher than 50. Jerry -------------------------- proc updateText {args} { set text [.c1 find withtag text] foreach {name size type} [.c1 itemcget $text -font] {break} set font [list $name $::value $type] .c1 itemconfigure $text -font $font } set c [canvas .c1 -width 800 -height 600 -bg white] set s [scale .s1 -from 5 -to 200 -orient horizontal -...
2007 May 24
2
fonts on centos 4 and 5
...eone else posted a followup and said he has the same issue. What can be happening here??? xlsfonts shows that bigger fonts are available. How can I get bigger fonts??? Note - I had to do a "yum install tk" also... Thanks, Jerry --------------------------------- #!/usr/bin/wish proc updateText {args} { set text [.c1 find withtag text] foreach {name size type} [.c1 itemcget $text -font] {break} set font [list $name $::value $type] .c1 itemconfigure $text -font $font } set c [canvas .c1 -width 800 -height 600 -bg white] set s [scale .s1 -from 5 -to 200 -orient horizontal -...