From: MENON Jean-Francois Date: 2003-02-05T00:34:05+09:00 Subject: problem with tk hello, here is the script: require 'tk' t=TkText.new.pack t.tag_configure('test','foreground'=>'blue') t.tag_bind('test','Enter',proc { puts 'test'}) t.insert('end','hello crash') Tk.mainloop and here is the error: /opt/sfw/lib/ruby/1.6/tk.rb:653:in `tk_call': invalid command name `tag' (NameError) from /opt/sfw/lib/ruby/1.6/tk.rb:371:in `_bind_core' from /opt/sfw/lib/ruby/1.6/tk.rb:379:in `_bind' from /opt/sfw/lib/ruby/1.6/tktext.rb:269:in `tag_bind' from tag.rb:4 am I doing something wrong, or is there a problem with tktext.rb ? thx, jf