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

[REBOL] Re: key events... hacking...

From: greggirwin:mindspring at: 20-Jan-2004 22:33

Hi Max, MOA> Does the return value indicate if the event should be passed MOA> along to the next event handler? or anything of the like... Yes. You are hooking into an event chain so you must return the event itself. e.g. insert-event-func func [face event] [ print [event/1 event/2 event/3 event/4 event/5 event/6 event/7 event/8] event ] Also, look into remove-event-func if you're doing more than simple single-shot View window stuff. -- Gregg