> -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Wednesday, December 19, 2001 6:45 PM > To: [EMAIL PROTECTED] > Subject: [REBOL] Re: Dynamically adding boxes to layout
>> What's the best way to set markers so that I can refer to the right place in my >> layout? Somtimes I want to append/remove/insert etc. IMO it could get hard to >> build a reference structure that's comfortable to handle at runtime. > > sub-layout: make-a-face-somehow > and work with sub-layout/pane ? Hi, something like this. I now use the following pattern-of-dumb. graph-layout: [at 0x0 box green effect [draw [(line-face)]]] line-face: [] Now I can add draw-dialect stuff to line-face and later I use: return compose graph-layout. This makes it possible to seperate your layout into individual accessable parts. Robert -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
