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

[REBOL] Conflict btw Engage and Over

From: info::id-net::ch at: 15-Mar-2002 13:57

Hi all, The code below is working for the 'over function but not with the 'engage func. The resulting function (showHour) is tracking constantly the position of the mouse, returning information on the screen. Is it possible that the constant tracking make conflicts with 'engage ? I tried to add "if action = 'over [showHour pos] " but in this case it's the 'over function that is not working.. What can I do ? append lt-ecr-INITIAL [ at 0x0 box 428x560 feel [ over: func [face action pos] [ showHour pos ] engage: func [ face action event ] [ if action = 'down [do [construction-a event/offset] ] ] ] ] Philippe