From: Hidetoshi NAGAI Date: 2006-06-23T05:39:14+09:00 Subject: Re: Ruby/Tk key bindings From: Tait Pollard Subject: Ruby/Tk key bindings Date: Thu, 22 Jun 2006 22:17:51 +0900 Message-ID: <65f1e8cb17e058cb31c844bea7d6ae69@ruby-forum.com> > I've been trying to make a key-binding to the Backspace key and I am > having some trouble. I've tried many different combo's and names. I have > also searched for archaic names for the key and haven't had any luck. man n keysyms ;-) Please use `BackSpace'. For example, ------------------------------------------------------- Tk.root.bind('BackSpace'){print "BS!\n"} Tk.mainloop ------------------------------------------------------- -- Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)