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
Ed Redman wrote:
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
Take a look at sample/demos-en/style.rb. It creates a text box with multiple fonts, faces, etc.
···
--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407
Just to clarify things a little, the full URL is
http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/ext/tk/sample/demos-en/style.rb
Regards, Morton
···
On Jan 24, 2007, at 11:12 PM, Joel VanderWerf wrote:
Ed Redman wrote:
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.
Take a look at sample/demos-en/style.rb. It creates a text box with multiple fonts, faces, etc.