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

[REBOL] Re: Dynamic Layout creation

From: ryanc:iesco-dms at: 15-Mar-2002 10:31

You can do that by generating set-words, like so... repeat num 5 [ append myBlock to-set-word join 'rad num: num + 1 ] But I dont find that too elegant myself. I would do it this way... repeat num 5 [ repend myBlock ['radio 'user-data num [radio-selected: face/user-data]] ] It will make your next step easier. --Ryan [riusa--email--it] wrote: