The way i use is to place different boxes, in my first layout.. Those boxes could have 0x0 offset and 1x1 size. (i.e boxA) Each one them could have a content when you want, even when the first layout object is done and shown. The content is another layout. You just has to 1) transform the [] into a layout 2) declare that the layout-number2 is boxA/pane 3) declare boxA/size: 200x200 i.e. 4) declare boxA/offset is 10x10 5) show boxA
All the procedures I used is in the article, too. http://www.rebolfrance.org/articles/debutantvid/debutantvid.htm But I'm sure there's other ways to do it.. I do that, because I have problems to handle subpanels, access and refresh them. ----- Original Message ----- From: "B-E-P" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 21, 2002 3:10 PM Subject: [REBOL] Re: Layout > 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 > ----- Original Message ----- > From: "Philippe Oehler" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Saturday, September 21, 2002 12:36 PM > Subject: [REBOL] Re: Layout > > > > I wrote an article on Rebolfrance about dynamically creating a layout. You > > could use it too, as I know you're a french guy, too. > > > > ----- Original Message ----- > > From: "B-E-P" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Friday, September 20, 2002 11:28 PM > > Subject: [REBOL] Re: Layout > > > > > > > Thanks for your answer Carl, > > > I had a look to http://www.rebol.com/how-to/subpanels.html but it's only > a > > > part of my answer. > > > In fact I want to dynamically add a text followed by a box to a panel > for > > > each new entry to a Personal Information Manager. I was thinking that I > > > could define a layout with these faces, and insert it to my main panel. > > > Maybe there is a different way to do it, I don't know. > > > so please au-secours!!! :-) > > > Bertrand Pivaty > > > > > > ----- Original Message ----- > > > From: "Carl Read" <[EMAIL PROTECTED]> > > > To: <[EMAIL PROTECTED]> > > > Sent: Friday, September 20, 2002 10:44 PM > > > Subject: [REBOL] Re: Layout > > > > > > > > > > On 21-Sep-02, B-E-P wrote: > > > > > > > > > Hello, > > > > > > > > > I recently started with REBOL, and I try to use defined layout into > > > > > layout. I read from the VID documentation that it is possible, > > > > > unless I miss-understood. Please if any body can help I would be > > > > > very happy. > > > > > > > > Hi Bertrand, > > > > > > > > I think this how-to would be the best answer to your question... > > > > > > > > http://www.rebol.com/how-to/subpanels.html > > > > > > > > If it's not what you're after, do ask again - you'll most certainly > > > > get an answer. This is a very helpful list. > > > > > > > > There's also "real" panels. Meaning, VID has a 'panel word, but I > > > > know of no description of how it should be used. Yes, that's a > > > > question for this very helpful list. (; > > > > > > > > -- > > > > Carl Read > > > > > > > > -- > > > > To unsubscribe from this list, please send an email to > > > > [EMAIL PROTECTED] with "unsubscribe" in the > > > > subject, without the quotes. > > > > > > -- > > > To unsubscribe from this list, please send an email to > > > [EMAIL PROTECTED] with "unsubscribe" in the > > > subject, without the quotes. > > > > > > > -- > > To unsubscribe from this list, please send an email to > > [EMAIL PROTECTED] with "unsubscribe" in the > > subject, without the quotes. > > -- > To unsubscribe from this list, please send an email to > [EMAIL PROTECTED] with "unsubscribe" in the > subject, without the quotes. > -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
