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

[REBOL] Re: Stylize/deep

From: petr:krenzelok:trz:cz at: 26-Dec-2001 5:30

Ammon Johnson wrote:
>I see where you are coming from, sld happens to be a slider, but it is not >defined until init happens so... One thing you might like to try at the >console is, > >>>probe get-style 'text-list >>> > >That will return the actually text-list style, which may give you awonderful >insight. Something that you will notice is that 'sld is defined in the 'init >function so you will need to redefine it something like: >
or just use layout post-processing capability, something like: view layout [t: text-list "ABCD" do [t/sld/edge/color: 0.0.0]] ... the 'do block will be called just once, after the 't is already defined .... or so it seems .... -pekr-