[rebol []
unview/all
view layout [
across button "00" [] button "10" []
below across button "01" [] button "11" []
below across button "quit" [quit] button "halt" [unview/all halt]
]]
> >From what I've seen of /View thus far, I like it, but have ran into a
> brick wall when it comes to nesting layouts.
>
> It seems that across and below won't nest. If you specify one or the
> other after one or the other, it cancels the previous one.
>
> i.e.
>
> REBOL[]
>
> view layout [
> across
> below
> a1: area "text area"
> across
> t1: text "foo"
> f1: field "text field"
> return
>
> a2: area "text area"
> b1: button "foo2"
> ]
>
> I've indented to allow for better flow following. I have also noticed
> that across and below do not support [] brackets. Is anything planned to
> address these issues? They seem to impede on advanced layouts.
>
>
> --
> Regards,
> Deryk Robosson
> // [EMAIL PROTECTED]
> // http://linux.tc3net.com/newlook
>
>
>
>