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

[REBOL] Re: VID questions

From: agem:crosswinds at: 25-May-2001 2:16

>>>>>>>>>>>>>>>>>> Ursprüngliche Nachricht <<<<<<<<<<<<<<<<<<
Am 24.05.01, 17:06:26, schrieb "GS Jones" <[gjones05--mail--orion--org]> zum Thema [REBOL] Re: VID questions:
> From: "Robert M. Muench" > > Hi, I'm hacking a prototype with /View. > Best way to do it, in my opinion. :-) > > As I hadn't time to dive deep into /View > > yet, I'm quite a beginner with it. Here are my questions: > > > > 1. Is there a way to find out the words of the VID dialect? > To specifically find the words in the VID dialect: > probe system/view/vid/vid-words > > 2. Where are things like text-list defined? > > Is it possible to see the source for this? > There are several methods that I've seen proposed. The one I use the > most is simply perusing the source. If I recall, the way to peruse > /View source is through a text printout like so: > ;boot to the console mode of /view > echo %view-vid-1.2.txt > print mold system/view > echo none > This method was adapted from Larry Palmiter. Then read to your
heart's
> delight. To specifically find text-list, search for that word. Some > faces' words are sprinkled through-out, so searching for the > case-constrained name is better, like TEXT for text face.
[get-style 'text-list] gives the face, [get in get-style 'text-list 'facets] gives most of the differences to [get in get-style 'text-list 'type] wrap functions around :) also layout[ t1: area do[ probe t1/feel ;or other stuff probe first t1 ] ] helps