[REBOL] Re: VID questions
From: arolls:bigpond:au at: 25-May-2001 3:21
If you have a layout like this:
lay: layout [
field
field
field
]
(Layout returns an object with type = 'face.)
Then you can refer to the second field, for
example, via the 'pane attribute of the lay face.
; change second field
set in pick lay/pane 2 'text "hello"
show pick lay/pane 2 ; show it
view lay
To get number of objects in the layout:
length? lay/pane == 3
> 5. Did anyone wrote an debug object browser? Something I can call like obj
> myVIDobject and which will present a hierarchie like the system
> object browser?
> With this it would be possible to see the attributes etc. of a VID object.
It's only the beginning for a browser.
Anton.