From: Ed Redman Date: 2007-01-25T11:05:08+09:00 Subject: tk text tag_configure I am trying to use Ruby/tk and a TkText object and change the text font on each line. I can set the font and fontsize but when I do change the Tktext object. All the text is changed. I believe I have to tag the text object in some way but I am missing some point. I am using a tcl file font.tcl as a model. There is a line in the tcl code that I can't seem to get the ruby context. .t tag configue f[incr count] -font [list $family 10] if I have an object text = TkText.new could someone help me translate this into ruby/tk. I believe it is something like "text.tag_configure" but after this I am lost. thanks in advance