>
> Hi all ~
>
> I'd like to group a bunch of faces so I can treat them a one for show
> and other purposes.
>
> I am studying Carl's REBODEX script and see how he's doing that. Since I
> clearly don't understand all aspects of
> his script, the way I understand it seems too complex:
>
> 1. create layouts like PANE1 etc.
> 2. place a BOX on the main layout in the size of PANE1
To place the box on the main layout, it would need to be created first
=^.^=
> 3. create main layout
> 4. assign PANE1's pane to the box/pane from step 2
Not exactly, assign PANE1 to BOX1/pane (or whatever you wanted to call it)
>
> Questions: Is my assessment (steps 1 - 4 ) above correct?
> Is there a simpler way?
PANE1: layout [backdrop orange text blue bold {Hi}]
view layout [
backdrop black
BOX1: box green 100x100 with [pane: PANE1]
]
The colors are so it's easier to see where each part is displayed.
And PANE1's offset is the offset inside the box - so 0x0 is the upper corner
of BOX1, not of the main face.
--
To unsubscribe from the list, just send an email to
lists at rebol.com with unsubscribe as the subject.