[REBOL] Re: How to's
From: ammonjohnson:yah:oo at: 25-Oct-2001 21:14
Not directly as I would like to do. ;)
a: make face [
offset: 100x100
size: 300x50
;there should be a way to do something like:
pane: make face [
a: make face [
pane: make face [
text: "face_a's data"
font: make font [
size: 20
style: 'bold
]
]
]
b: make face [
pane: make face [
text: "face_b's data"
font: make font [
size: 20
style: 'bold
]
]
]
]
]
but this doesn't seem to work. I know you can append to a face that is
already made, but I want to make it with 'make 'face not with VID.
Thanks!!
Ammon