From: -X- How, in Tk, can I XXX: A10.B.1. All default class bindings for Tk widgets are initialized in $tk_library/tk.tcl. Use this file as a guide to implement new bindings. For instance, the following code duplicates Button 1's drag-select facility in Button 3 for all listboxes: bind Listbox <3> {%W select from [%W nearest %y]} bind Listbox <B3-Motion> {%W select to [%W nearest %y]}Go Back Up