[REBOL] Re: double-click on text-list
From: jon_saltzman:pitzer at: 5-Dec-2001 14:06
I'm using a normal list, but I imagine it's very similar - I capture the event and then usually execute some function on a single click: from: text 160x20 feel [ detect: func [face event] [ if event/type = 'down [ print "You single-clicked me!" ] ] ] Look up the other mouse events, I think there's a double click one on the page Ammon sent you. -Jon