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

[REBOL] Re: Dynamic Views possible

From: rebol::ccsducto::com::ar at: 2-Dec-2006 12:23

Hi Yvan, Try something like this, of course you can do the function as complex as you want but, this is the idea func-lay: func [fld-block /local lay-block][ lay-block: copy [across] foreach [f-name f-data] fld-block [ append lay-block reduce ['txt rejoin [to-string f-name ": "] 'txt to-string f-data 'return] ] lay-block ] view layout func-lay [name1 text1 name2 text2] César