[REBOL] Re: How to do a portion of a layout?
From: nitsch-lists:netcologne at: 25-Mar-2004 12:10
On Donnerstag, 25. M=E4rz 2004 14:19, [bry--itnisk--com] wrote:
> Hi, I'm trying to build a portion of a form
> from a text string, this string at the end I
> want to do and have my buttons etc. where
> they should be.
>
> The string certainly looks to be coming out
> okay, but it doesn't seem that one can
> have do b in the layout and then have the
> form expanded. How does one go about doing
> this.
Turn the string in a block with load. then layout it.
layout load {title "hello"}
when the string is only part of layout, insert it somehow in the surrounding
block. with some of the usual tools, like
s: {text "hello" text "world"}
layout compose[across (load s)]
Use a lot of probe when constructing the block to make sure you get what you
want.
-Volker