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

[REBOL] Re: Hide a face inside its action event?

From: sterling:rebol at: 14-Jan-2002 15:19

It all depends o nwhen you do the hide. The problem you are running into is that the face is reshown automatically to display the change in the face as you release the mouse button. If you hide it on the 'up event then it should hide just fine. Example: view layout [ button "hide" feel [ engage: func [f a e] [if a = 'up [hide f]] ] ] Sterling