[REBOL] Re: Layout
From: obiwanbuz:yaho:o at: 21-Sep-2002 15:10
Thanks Philippe, it is a good article, this is more or less the the way I
tried to fix my problem.
But it is still not what I whant. May be I should ask the following
question:
Is it possible to add new face into a layout which is already displayed ?
The following lines (from Philippe Oehler) is a good example of dynamically
generating layout in one go, but it is done
before the block is actually transformed as a layout. I want to do it after
the block is drawn on the screen.
Is it possible ?
rebol []
fen: [backdrop 212.212.212]
for e 1 10 1 [append fen reduce compose/deep ['button (join "Hello " e)
[print (join "Salut " e)]]]
fen: layout fen
view fen