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

[REBOL] Re: XHTML Rebol browser help

From: anton:lexicon at: 27-Jan-2003 15:41

- Convert an RGB code such as "#FF00EE11" to a tuple: to-tuple repeat n 4 [ append [] to-integer copy/part at #FF00EE11 n * 2 - 1 2 ] If you actually have "#FF00EE11" in a string like that then use load: load "#FF00EE11" - Check out this demo for a scrolling grid: http://www.codeconscious.com/rebsite/face-grid-demo2.r - I haven't seen an easy way to do automatic wrap in a VID layout. Perhaps you should read source of layout. - Show us an example of your series. It should be a block of vid code, so maybe you are not building it correctly. Anton.