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

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

From: maximo:meteorstudios at: 21-Jan-2004 16:12

thanks! this works for me. but I noticed I have to patch in-window? cause there is a bug in it (v1.2.10)! if you source the code, you will notice that the last call to in-window is incorrectly typed as in-window instead of in-window? here is fixed version... for those who are listening: in-window?: func [ "Return true if a window contains a given face." window face ][ if face = window [return true] if none? face/parent-face [return false] in-window? window face/parent-face ] -MAx --- You can either be part of the problem or part of the solution, but in the end, being part of the problem is much more fun.