Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: More view questions...

From: petr:krenzelok:trz:cz at: 28-Aug-2002 20:34

Andy Finkel wrote:
>As long as I'm asking questions... > >Is there any way to get a list of all the possible facets (fields) for a >face ? > >I am doing scrolling without using scroll bars, so it would be nice if I >could stop the scroll at the end of the data by being able to check the >values in the face itself to see where I need to stop. > >Thanks, > >Andy >
print mold get-style 'button .... in a first place, or directly: print mold get in get-style 'button 'facets foreach [style-name style] system/view/vid/vid-styles [ print [ style-name newline "---------------" newline mold style/facets ] ] but if I understand you correctly, you are interested in all possible facets for certain styles. There may be some old doc explaining it a bit. Also - try to download %browse-system.r (http://www.rebol.org/script/browse-system.html) script (or even %ana-monitor.r?) and lurk a bit in system structure. It could help you a bit understand, how Rebol is organised ... -pekr-