[REBOL] Re: Style facet + How to add a check to a layout

2001-11-20 Thread Anton Rolls
That's pretty cool. :) Anton. > Just as a curio I've got a little proggie that shows the > derivations in the > form of a tree. In View: > > do http://www.codeconscious.com/rebsite/vid-ancestry.r -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe

[REBOL] Re: Style facet + How to add a check to a layout

2001-11-20 Thread Anton Rolls
Ah, nice. Less code. I really should go read through the dictionary again. :) Anton. > There's an easier and cleaner way to do it : > > >> lay: layout [button "pane/1"] > >> append lay/pane make-face 'check > >> view lay > > Make-face will take care of all VID specific stuff for you. > > -

[REBOL] Re: Style facet + How to add a check to a layout

2001-11-20 Thread Nenad Rakocevic
Hi Anton, There's an easier and cleaner way to do it : >> lay: layout [button "pane/1"] >> append lay/pane make-face 'check >> view lay Make-face will take care of all VID specific stuff for you. -DocKimbel Anton Rolls wrote: [...] > How to add a check to a layout: > > >> lay: layout

[REBOL] Re: Style facet + How to add a check to a layout

2001-11-20 Thread Brett Handley
> Obviously check is derived from a button, > which you can also see in the vid source > somewhere. Just as a curio I've got a little proggie that shows the derivations in the form of a tree. In View: do http://www.codeconscious.com/rebsite/vid-ancestry.r > > How to add a check to a layout: