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

[REBOL] Re: Re(2): Hiding self in Rebol/View - show?: false

From: petr:krenzelok:trz:cz at: 7-Feb-2001 8:04

Anton wrote:
> But this doesn't work: > view layout [b: button 100x100 [b/show?: false show b]]
view layout [b: button 100x100 [hide b]] can't imo work, as it reacts upon mouse button press, but after the 'hide takes effect, button is redrawn as it just comes from pressed state to unpressed??? well, try this .... view layout [b: button 100x100 c: button "hide" [hide b]] but then ... we don't hide "self" -pekr-