[REBOL] Re: VID, layout, DO, init, hide, show === ISSUE + BYPASS THE ISSUE
From: greggirwin:mindspring at: 26-May-2003 13:49
Hi Marc and Jaime, You could also do this: view layout [ f1: button "displayed" f2: button "not displayed" with [show?: false] f3: button "show f2" [show f2] f4: button "hide f2" [hide f2] ] WITH can be quite handy for this kind of initialization. -- Gregg