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

[REBOL] VID: rate question

From: robert::muench::robertmuench::de at: 5-Nov-2002 18:52

Hi, I have the following structure (stripped pseudo-code): My-face: Face [ rate 10 ... Do something on overy event ] Than I have a piece of code that does the following: My-box/pane: layout my-layout Foreach a set [ append my-box/pane/pane my-face ] So after viewing my-box the events for the appended faces start to run. The problem is how do I get rid of the event triggering again? I tried: hide my-box/pane/pane, hide my-box/pane etc. The pane is invisible but the rate still fires it's events. Any idea how to stop this again? Robert