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

[REBOL] Re: Adding Multiple Styles

From: anton:lexicon at: 11-Dec-2002 22:14

It would be good to see more of your code. Where are you getting your styles from ? Check that you are stylizing correctly. mon-style: stylize [ bouton: button "bonjour" ] view layout [ styles mon-style bouton ] Notice the format in the stylize block - a set-word (bouton:) followed by a style word and its facet details. In older versions of rebol, stylize used a little bit different format. If I remember correctly, it was like this: stylize [ bouton button "bonjour" ] Anyway, the latest full release of rebol/view uses the modern format at the top. Anton.