Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: windows events

From: cyphre:volny:cz at: 4-Oct-2001 11:20

Hello Ammon, try this example: insert-event-func func [face event][probe event/type return event] view layout [button "hello"] I hope this explains all the magic ;) Don't forget to always 'return event' else your rebol will hangs! Regards, Cyphre ----- Original Message ----- From: "Ammon Cooke" <[ammoncooke--yahoo--com]> To: <[rebol-list--rebol--com]> Sent: Thursday, October 04, 2001 1:56 AM Subject: [REBOL] windows events
> Hi, > > Just finished the Event Handler howto... > > The last line states, "It is better to use the INSERT-EVENT-FUNC
function to set window event handlers. This function allows multiple handlers for each window. It will be discussed separately."