[REBOL] Re: How to's
From: ammonjohnson:yah:oo at: 24-Oct-2001 20:24
----- Original Message -----
From: "Media" <[media--quazart--com]>
To: <[rebol-list--rebol--com]>
Sent: Wednesday, October 24, 2001 7:56 AM
Subject: [REBOL] Re: How to's
<Snip!>
> so, if you followed my latest thread (on this list), you'll know that to
> clone any object within the face, just do:
>
> rebol []
>
> gui: make face [
> text: "my first custom face"
> size: 300x50
> offset: 100x100
> font: make font [
> size: 15
> style: 'bold
> ]
> ]
>
> view gui
>
> and voila!
hate to correct people, but this does what you want a little better:
gui: make face [
offset: 100x100
size: 300x50
pane: make face [
size: 300x50
text: "my first custom face"
edge: make edge [size: none]
font: make font [
size: 15
style: 'bold
]
]
]
view gui
Enjoy!!
Ammon