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

VID

 [1/4] from: arnaud:dutartre:europe:tgs at: 30-Sep-2002 8:56


Could it be possible to have access to VID source code ? It is a .r file isn't it ? Thx Arno.

 [2/4] from: moeller_thorsten:gmx at: 30-Sep-2002 9:39


Hi Arno., it is not an .r file. It is a built in dialect in View. You can find the components of VID under system/view or system/view/vid. Thorsten
> Could it be possible to have access to VID source code ? It is a .r file > isn't it ?
<<quoted lines omitted: 4>>
> [rebol-request--rebol--com] with "unsubscribe" in the > subject, without the quotes.
-- Werden Sie mit uns zum "OnlineStar 2002"! Jetzt GMX wählen - und tolle Preise absahnen! http://www.onlinestar.de

 [3/4] from: carl:cybercraft at: 30-Sep-2002 20:31


On 30-Sep-02, Arnaud Dutartre wrote:
> Could it be possible to have access to VID source code ? It is a .r > file isn't it ?
The (uncommented:) source code to VID is part of View. For instance...
>> probe first system/view/vid
[self verbose warn word-limits vid-feel icon-image radio.bmp radio-on.bmp vid-colors vid-face state-flags vid-words vid-styles track error warning facet-words fw-with fw-feel spot expand-specs grow-facets do-facets next-tab choice-face set-edge] Note the first there. VID's an object and a big one and it takes a long time to show it all. But by using first we can look at just the words in the object. You can continue inwards like that...
>> probe first system/view/vid/vid-feel
[self sensor hot hot-area radio led check button icon subicon toggle rotary choice choice-iterator drag-off drag slide progress]
>> probe first system/view/vid/vid-feel/button
[self redraw detect over engage cue blink]
>> probe first system/view/vid/vid-feel/button/engage
** Script Error: engage is missing its face argument ** Near: probe first system/view/vid/vid-feel/button/engage engage is a function, not an object, hence the error. So...
>> probe get in system/view/vid/vid-feel/button 'engage
func [face action event][ switch action [ time [if not face/state [face/blinker: not face/blinker]] down [face/state: on] alt-down [face/state: on] up [if face/state [do-face face none] face/state: off] alt-up [if face/state [do-face-alt face none] face/state: off] over [face/state: on] away [face/state: off] ] cue face action show face ] You get the picture. Scott Jones made a nice post about this recently. It includes a method to save a text-file of the whole system code, which includes VID of course... http://www.escribe.com/internet/rebol/m25769.html -- Carl Read

 [4/4] from: gscottjones::mchsi::com at: 30-Sep-2002 8:32


From: "Carl Read" <...>
> Scott Jones made a nice post about this recently. It includes a > method to save a text-file of the whole system code, which includes > VID of course... > > http://www.escribe.com/internet/rebol/m25769.html
Thanks, Carl. This was a reminder that I forgot to tribute this trick to Larry Palmiter (if I recall correctly :-), which was considerably quicker than the method I was using before. --Scott Jones

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted