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

[REBOL] No color for grid effect?

From: semseddinm::bircom::com at: 5-Jan-2009 10:15

Hi, Grid Effect has a color option according to VID document: (http://www.rebol.com/docs/view-guide.html) { Grid: Generate a two dimensional grid of lines. This is a useful backdrop for graphical layout programs. The optional arguments are: a PAIR that specifies the horizontal and vertical spacing of the grid lines, a PAIR that specifies the offset of the first lines, a PAIR that indicates the THICKNESS of the horizontal and vertical lines, and a TUPLE that provides the color of the lines. } But the following two lines give same result, is color ignored or am I doing something wrong? view layout [box 100x100 blue effect [grid 5x8 10x10 2x1]] view layout [box 100x100 blue effect [grid 5x8 10x10 2x1 110.120.130]]